pub struct StoredGraphConfig {
pub database: String,
pub node_table: String,
pub edge_table: String,
pub id_col: String,
pub label_col: String,
pub src_col: String,
pub dst_col: String,
pub type_col: String,
pub realm_col: Option<String>,
}Expand description
Column roles + table names for a registered graph (decoupled mirror of the
catalog’s GraphRegistration). The server maps registration → this.
Fields§
§database: String§node_table: String§edge_table: String§id_col: String§label_col: String§src_col: String§dst_col: String§type_col: String§realm_col: Option<String>Trait Implementations§
Source§impl Clone for StoredGraphConfig
impl Clone for StoredGraphConfig
Source§fn clone(&self) -> StoredGraphConfig
fn clone(&self) -> StoredGraphConfig
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 moreAuto Trait Implementations§
impl Freeze for StoredGraphConfig
impl RefUnwindSafe for StoredGraphConfig
impl Send for StoredGraphConfig
impl Sync for StoredGraphConfig
impl Unpin for StoredGraphConfig
impl UnsafeUnpin for StoredGraphConfig
impl UnwindSafe for StoredGraphConfig
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