pub struct TeamResponse {
pub id: String,
pub name: String,
pub description: Option<String>,
pub is_public: bool,
pub created_by: String,
pub created_at: String,
}Expand description
Single team record returned by list and detail endpoints.
Fields§
§id: String§name: String§description: Option<String>§is_public: bool§created_by: String§created_at: StringTrait Implementations§
Source§impl Debug for TeamResponse
impl Debug for TeamResponse
Source§impl<'de> Deserialize<'de> for TeamResponse
impl<'de> Deserialize<'de> for TeamResponse
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
Auto Trait Implementations§
impl Freeze for TeamResponse
impl RefUnwindSafe for TeamResponse
impl Send for TeamResponse
impl Sync for TeamResponse
impl Unpin for TeamResponse
impl UnwindSafe for TeamResponse
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