pub struct LinearComment {
pub id: String,
pub body: String,
pub issue_id: String,
pub user: Option<LinearUserRef>,
pub created_at: String,
pub updated_at: String,
pub url: String,
}Fields§
§id: String§body: String§issue_id: String§user: Option<LinearUserRef>§created_at: String§updated_at: String§url: StringTrait Implementations§
Source§impl Clone for LinearComment
impl Clone for LinearComment
Source§fn clone(&self) -> LinearComment
fn clone(&self) -> LinearComment
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 LinearComment
impl Debug for LinearComment
Source§impl Default for LinearComment
impl Default for LinearComment
Source§fn default() -> LinearComment
fn default() -> LinearComment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LinearComment
impl<'de> Deserialize<'de> for LinearComment
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
Auto Trait Implementations§
impl Freeze for LinearComment
impl RefUnwindSafe for LinearComment
impl Send for LinearComment
impl Sync for LinearComment
impl Unpin for LinearComment
impl UnsafeUnpin for LinearComment
impl UnwindSafe for LinearComment
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