pub struct LinearTeam {
pub id: String,
pub key: String,
pub name: String,
pub description: String,
pub private: bool,
pub icon: String,
pub color: String,
}Fields§
§id: String§key: String§name: String§description: String§private: bool§icon: String§color: StringTrait Implementations§
Source§impl Clone for LinearTeam
impl Clone for LinearTeam
Source§fn clone(&self) -> LinearTeam
fn clone(&self) -> LinearTeam
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LinearTeam
impl Debug for LinearTeam
Source§impl Default for LinearTeam
impl Default for LinearTeam
Source§fn default() -> LinearTeam
fn default() -> LinearTeam
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinearTeam
impl<'de> Deserialize<'de> for LinearTeam
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 LinearTeam
impl RefUnwindSafe for LinearTeam
impl Send for LinearTeam
impl Sync for LinearTeam
impl Unpin for LinearTeam
impl UnsafeUnpin for LinearTeam
impl UnwindSafe for LinearTeam
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