pub struct TeamPayload {
pub last_sync_id: Option<f64>,
pub team: Option<Box<Team>>,
pub success: Option<bool>,
}Fields§
§last_sync_id: Option<f64>The identifier of the last sync operation.
team: Option<Box<Team>>The team that was created or updated.
success: Option<bool>Whether the operation was successful.
Trait Implementations§
Source§impl Clone for TeamPayload
impl Clone for TeamPayload
Source§fn clone(&self) -> TeamPayload
fn clone(&self) -> TeamPayload
Returns a duplicate of the value. Read more
1.0.0 · 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 TeamPayload
impl Debug for TeamPayload
Source§impl Default for TeamPayload
impl Default for TeamPayload
Source§fn default() -> TeamPayload
fn default() -> TeamPayload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TeamPayloadwhere
TeamPayload: Default,
impl<'de> Deserialize<'de> for TeamPayloadwhere
TeamPayload: Default,
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
Source§impl GraphQLFields for TeamPayload
impl GraphQLFields for TeamPayload
Auto Trait Implementations§
impl Freeze for TeamPayload
impl RefUnwindSafe for TeamPayload
impl Send for TeamPayload
impl Sync for TeamPayload
impl Unpin for TeamPayload
impl UnwindSafe for TeamPayload
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