If you only want one field from this document, you can use select to specify the desired field, which will make your queries more efficient.
users_ref = db.collection('Donut').select(['Brand'])
docs = users_ref.stream()
for doc in docs:
brand = doc.to_dict()['Brand']
print(brand)