pub struct OrganizationRelationship {
pub name: String,
pub description: Option<String>,
pub relating_organization: OrganizationRef,
pub related_organization: OrganizationRef,
}Fields§
§name: String§description: Option<String>§relating_organization: OrganizationRefTrait Implementations§
Source§impl Clone for OrganizationRelationship
impl Clone for OrganizationRelationship
Source§fn clone(&self) -> OrganizationRelationship
fn clone(&self) -> OrganizationRelationship
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 OrganizationRelationship
impl Debug for OrganizationRelationship
Source§impl PartialEq for OrganizationRelationship
impl PartialEq for OrganizationRelationship
Source§fn eq(&self, other: &OrganizationRelationship) -> bool
fn eq(&self, other: &OrganizationRelationship) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OrganizationRelationship
Auto Trait Implementations§
impl Freeze for OrganizationRelationship
impl RefUnwindSafe for OrganizationRelationship
impl Send for OrganizationRelationship
impl Sync for OrganizationRelationship
impl Unpin for OrganizationRelationship
impl UnsafeUnpin for OrganizationRelationship
impl UnwindSafe for OrganizationRelationship
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