pub struct LinearData {
pub teams: Option<Connection<Team>>,
pub viewer: Option<Choice>,
pub binding: Option<Binding>,
pub issues: Option<Connection<Issue>>,
pub issue: Option<Issue>,
pub issue_create: Option<IssueMutation>,
pub issue_update: Option<IssueMutation>,
pub comment_create: Option<CommentMutation>,
}Expand description
Only these provider fields may leave the host. Unknown response fields are dropped.
Fields§
§teams: Option<Connection<Team>>§viewer: Option<Choice>§binding: Option<Binding>§issues: Option<Connection<Issue>>§issue: Option<Issue>§issue_create: Option<IssueMutation>§issue_update: Option<IssueMutation>§comment_create: Option<CommentMutation>Trait Implementations§
Source§impl Clone for LinearData
impl Clone for LinearData
Source§fn clone(&self) -> LinearData
fn clone(&self) -> LinearData
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 LinearData
impl Debug for LinearData
Source§impl Default for LinearData
impl Default for LinearData
Source§fn default() -> LinearData
fn default() -> LinearData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinearData
impl<'de> Deserialize<'de> for LinearData
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 PartialEq for LinearData
impl PartialEq for LinearData
Source§impl Serialize for LinearData
impl Serialize for LinearData
impl StructuralPartialEq for LinearData
Auto Trait Implementations§
impl Freeze for LinearData
impl RefUnwindSafe for LinearData
impl Send for LinearData
impl Sync for LinearData
impl Unpin for LinearData
impl UnsafeUnpin for LinearData
impl UnwindSafe for LinearData
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