pub struct AnalystNote {Show 14 fields
pub uuid: Option<Uuid>,
pub object_uuid: Option<Uuid>,
pub object_type: Option<AnalystObjectType>,
pub authors: Option<String>,
pub org_uuid: Option<Uuid>,
pub orgc_uuid: Option<Uuid>,
pub created: Option<String>,
pub modified: Option<String>,
pub distribution: Option<DistributionLevelId>,
pub sharing_group_id: Option<Option<String>>,
pub locked: Option<bool>,
pub note: Option<String>,
pub language: Option<String>,
pub note_type_name: Option<NoteTypeName>,
}
Fields§
§uuid: Option<Uuid>
§object_uuid: Option<Uuid>
§object_type: Option<AnalystObjectType>
§org_uuid: Option<Uuid>
§orgc_uuid: Option<Uuid>
§created: Option<String>
§modified: Option<String>
§distribution: Option<DistributionLevelId>
§sharing_group_id: Option<Option<String>>
§locked: Option<bool>
§note: Option<String>
§language: Option<String>
RFC5646 Language code
note_type_name: Option<NoteTypeName>
Implementations§
Source§impl AnalystNote
impl AnalystNote
pub fn new() -> AnalystNote
Trait Implementations§
Source§impl Clone for AnalystNote
impl Clone for AnalystNote
Source§fn clone(&self) -> AnalystNote
fn clone(&self) -> AnalystNote
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 AnalystNote
impl Debug for AnalystNote
Source§impl Default for AnalystNote
impl Default for AnalystNote
Source§fn default() -> AnalystNote
fn default() -> AnalystNote
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalystNote
impl<'de> Deserialize<'de> for AnalystNote
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 AnalystNote
impl PartialEq for AnalystNote
Source§impl Serialize for AnalystNote
impl Serialize for AnalystNote
impl StructuralPartialEq for AnalystNote
Auto Trait Implementations§
impl Freeze for AnalystNote
impl RefUnwindSafe for AnalystNote
impl Send for AnalystNote
impl Sync for AnalystNote
impl Unpin for AnalystNote
impl UnwindSafe for AnalystNote
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