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