pub struct RelationInstance {
pub outbound_id: Uuid,
pub namespace: String,
pub name: String,
pub instance_id: String,
pub inbound_id: Uuid,
pub description: String,
pub components: Vec<ComponentTypeId>,
pub properties: Vec<PropertyInstance>,
pub extensions: Vec<Extension>,
/* private fields */
}
Fields§
§outbound_id: Uuid
The id of the outbound entity instance.
namespace: String
The type namespace.
name: String
The type name.
instance_id: String
The relation type instance id.
inbound_id: Uuid
The id of the inbound entity instance.
description: String
Textual description of the entity instance.
components: Vec<ComponentTypeId>
The components.
properties: Vec<PropertyInstance>
The property instances.
extensions: Vec<Extension>
The extensions.
Trait Implementations§
Source§impl Clone for RelationInstance
impl Clone for RelationInstance
Source§fn clone(&self) -> RelationInstance
fn clone(&self) -> RelationInstance
Returns a copy 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 RelationInstance
impl Debug for RelationInstance
Source§impl From<RelationInstance> for RelationInstance
impl From<RelationInstance> for RelationInstance
Source§impl TableInlineFormatSetter for RelationInstance
impl TableInlineFormatSetter for RelationInstance
fn set_table_inline_format(&mut self, table_inline_format: TableInlineFormat)
Source§impl Tabled for RelationInstance
impl Tabled for RelationInstance
Auto Trait Implementations§
impl Freeze for RelationInstance
impl RefUnwindSafe for RelationInstance
impl Send for RelationInstance
impl Sync for RelationInstance
impl Unpin for RelationInstance
impl UnwindSafe for RelationInstance
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more