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