pub struct DlrlTypeInfo {
pub name: String,
pub keys: Vec<String>,
pub relations: Vec<(String, String)>,
}Expand description
Aggregierte Type-Info — alle Pragmas, die einen einzelnen Type betreffen.
Fields§
§name: StringVollqualifizierter Type-Name (demo::Trade).
keys: Vec<String>Liste der Key-Felder (Reihenfolge wie im IDL).
relations: Vec<(String, String)>Liste der Relationships (relation_name, target_type).
Trait Implementations§
Source§impl Clone for DlrlTypeInfo
impl Clone for DlrlTypeInfo
Source§fn clone(&self) -> DlrlTypeInfo
fn clone(&self) -> DlrlTypeInfo
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 DlrlTypeInfo
impl Debug for DlrlTypeInfo
Source§impl Default for DlrlTypeInfo
impl Default for DlrlTypeInfo
Source§fn default() -> DlrlTypeInfo
fn default() -> DlrlTypeInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for DlrlTypeInfo
impl PartialEq for DlrlTypeInfo
Source§fn eq(&self, other: &DlrlTypeInfo) -> bool
fn eq(&self, other: &DlrlTypeInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for DlrlTypeInfo
impl StructuralPartialEq for DlrlTypeInfo
Auto Trait Implementations§
impl Freeze for DlrlTypeInfo
impl RefUnwindSafe for DlrlTypeInfo
impl Send for DlrlTypeInfo
impl Sync for DlrlTypeInfo
impl Unpin for DlrlTypeInfo
impl UnsafeUnpin for DlrlTypeInfo
impl UnwindSafe for DlrlTypeInfo
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