pub struct GitLabNote {
pub id: u64,
pub body: String,
pub author: Option<GitLabUser>,
pub created_at: String,
pub updated_at: Option<String>,
pub system: bool,
pub resolvable: bool,
pub resolved: bool,
pub resolved_by: Option<GitLabUser>,
pub position: Option<GitLabNotePosition>,
}Fields§
§id: u64§body: String§created_at: String§updated_at: Option<String>§system: bool§resolvable: bool§resolved: bool§resolved_by: Option<GitLabUser>§position: Option<GitLabNotePosition>Trait Implementations§
Source§impl Clone for GitLabNote
impl Clone for GitLabNote
Source§fn clone(&self) -> GitLabNote
fn clone(&self) -> GitLabNote
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 GitLabNote
impl Debug for GitLabNote
Source§impl<'de> Deserialize<'de> for GitLabNote
impl<'de> Deserialize<'de> for GitLabNote
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 GitLabNote
impl RefUnwindSafe for GitLabNote
impl Send for GitLabNote
impl Sync for GitLabNote
impl Unpin for GitLabNote
impl UnsafeUnpin for GitLabNote
impl UnwindSafe for GitLabNote
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