pub struct AnalystRelationship {Show 15 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 related_object_uuid: Option<Uuid>,
pub related_object_type: Option<AnalystObjectType>,
pub relationship_type: 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>
§relationship_type: Option<String>
§note_type_name: Option<NoteTypeName>
Implementations§
Source§impl AnalystRelationship
impl AnalystRelationship
pub fn new() -> AnalystRelationship
Trait Implementations§
Source§impl Clone for AnalystRelationship
impl Clone for AnalystRelationship
Source§fn clone(&self) -> AnalystRelationship
fn clone(&self) -> AnalystRelationship
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 AnalystRelationship
impl Debug for AnalystRelationship
Source§impl Default for AnalystRelationship
impl Default for AnalystRelationship
Source§fn default() -> AnalystRelationship
fn default() -> AnalystRelationship
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalystRelationship
impl<'de> Deserialize<'de> for AnalystRelationship
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 AnalystRelationship
impl PartialEq for AnalystRelationship
Source§impl Serialize for AnalystRelationship
impl Serialize for AnalystRelationship
impl StructuralPartialEq for AnalystRelationship
Auto Trait Implementations§
impl Freeze for AnalystRelationship
impl RefUnwindSafe for AnalystRelationship
impl Send for AnalystRelationship
impl Sync for AnalystRelationship
impl Unpin for AnalystRelationship
impl UnwindSafe for AnalystRelationship
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