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