pub struct PhysicalGraphProjection {
pub name: String,
pub created_at_unix_ms: u128,
pub updated_at_unix_ms: u128,
pub state: String,
pub source: String,
pub node_labels: Vec<String>,
pub node_types: Vec<String>,
pub edge_labels: Vec<String>,
pub last_materialized_sequence: Option<u64>,
}Fields§
§name: String§created_at_unix_ms: u128§updated_at_unix_ms: u128§state: String§source: String§node_labels: Vec<String>§node_types: Vec<String>§edge_labels: Vec<String>§last_materialized_sequence: Option<u64>Trait Implementations§
Source§impl Clone for PhysicalGraphProjection
impl Clone for PhysicalGraphProjection
Source§fn clone(&self) -> PhysicalGraphProjection
fn clone(&self) -> PhysicalGraphProjection
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 PhysicalGraphProjection
impl RefUnwindSafe for PhysicalGraphProjection
impl Send for PhysicalGraphProjection
impl Sync for PhysicalGraphProjection
impl Unpin for PhysicalGraphProjection
impl UnsafeUnpin for PhysicalGraphProjection
impl UnwindSafe for PhysicalGraphProjection
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