Struct gitlab::types::Note[][src]

pub struct Note {
Show fields pub id: NoteId, pub note_type: Option<DiscussionNoteType>, pub body: String, pub attachment: Option<String>, pub author: UserBasic, pub created_at: DateTime<Utc>, pub updated_at: DateTime<Utc>, pub resolvable: bool, pub resolved: Option<bool>, pub resolved_by: Option<UserBasic>, pub system: bool, pub noteable_type: NoteType, pub position: Option<NotePosition>, // some fields omitted
}

A comment on an entity.

Fields

id: NoteId

The ID of the note.

note_type: Option<DiscussionNoteType>

The type of the note.

body: String

The content of the note.

attachment: Option<String>

The URL of an attachment to the note.

author: UserBasic

The author of the note.

created_at: DateTime<Utc>

When the note was created.

updated_at: DateTime<Utc>

When the note was last updated.

resolvable: bool

Whether the note can be resolved.

resolved: Option<bool>

Whether the note has been resolved.

resolved_by: Option<UserBasic>

The user that resolved the note.

system: bool

Whether the note was created by a user or in response to an external action.

System notes include indications that the commit, issue, etc. was referenced elsewhere, a milestone, assignee, or label change, status chages, and so on.

noteable_type: NoteType

The type of entity the note is attached to.

position: Option<NotePosition>

If applicable, the diff data to which the note is attached

Implementations

impl Note[src]

pub fn noteable_id(&self) -> Option<NoteableId>[src]

The ID of the entity the note is attached to.

pub fn noteable_iid(&self) -> Option<NoteableInternalId>[src]

The internal ID of the entity the note is attached to (internal to a project). This is available only for notes attached to issues and merge requests.

Trait Implementations

impl Clone for Note[src]

fn clone(&self) -> Note[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Note[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl<'de> Deserialize<'de> for Note[src]

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
    __D: Deserializer<'de>, 
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for Note[src]

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
    __S: Serializer
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

impl RefUnwindSafe for Note

impl Send for Note

impl Sync for Note

impl Unpin for Note

impl UnwindSafe for Note

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]