pub struct Team {
pub id: String,
pub owner_id: Option<String>,
pub name: String,
pub logo: String,
pub path: String,
pub description: Option<String>,
pub hard_breaks: Option<bool>,
pub visibility: TeamVisibilityType,
pub created_at: DateTime<Utc>,
pub upgraded: bool,
}
Fieldsยง
ยงid: String
ยงowner_id: Option<String>
ยงname: String
ยงlogo: String
ยงpath: String
ยงdescription: Option<String>
ยงhard_breaks: Option<bool>
ยงvisibility: TeamVisibilityType
ยงcreated_at: DateTime<Utc>
ยงupgraded: bool
Trait Implementationsยง
Sourceยงimpl<'de> Deserialize<'de> for Team
impl<'de> Deserialize<'de> for Team
Sourceยงfn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Team
impl StructuralPartialEq for Team
Auto Trait Implementationsยง
impl Freeze for Team
impl RefUnwindSafe for Team
impl Send for Team
impl Sync for Team
impl Unpin for Team
impl UnwindSafe for Team
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Sourceยงimpl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Sourceยงfn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.