pub struct RelationType {
pub outbound_type_namespace: String,
pub outbound_type_name: String,
pub namespace: String,
pub name: String,
pub inbound_type_namespace: String,
pub inbound_type_name: String,
pub description: String,
pub components: Vec<ComponentTypeId>,
pub properties: Vec<PropertyType>,
pub extensions: Vec<Extension>,
/* private fields */
}
Fields§
§outbound_type_namespace: String
The namespace of the outbound entity type.
outbound_type_name: String
The name of the outbound entity type.
namespace: String
The namespace of the relation type.
name: String
The name of the relation type.
inbound_type_namespace: String
The namespace of the inbound entity type.
inbound_type_name: String
The name of the inbound entity type.
description: String
Textual description of the relation type.
components: Vec<ComponentTypeId>
The components.
properties: Vec<PropertyType>
The property types.
extensions: Vec<Extension>
The extensions.
Trait Implementations§
Source§impl Clone for RelationType
impl Clone for RelationType
Source§fn clone(&self) -> RelationType
fn clone(&self) -> RelationType
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 RelationType
impl Debug for RelationType
Source§impl From<RelationType> for RelationType
impl From<RelationType> for RelationType
Source§impl TableInlineFormatSetter for RelationType
impl TableInlineFormatSetter for RelationType
fn set_table_inline_format(&mut self, table_inline_format: TableInlineFormat)
Source§impl Tabled for RelationType
impl Tabled for RelationType
Auto Trait Implementations§
impl Freeze for RelationType
impl RefUnwindSafe for RelationType
impl Send for RelationType
impl Sync for RelationType
impl Unpin for RelationType
impl UnwindSafe for RelationType
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