pub struct DecodedEdgeKey {
pub from_key: Vec<u8>,
pub edge_type_hash: u32,
pub to_key: Vec<u8>,
}Expand description
Decoded edge key components.
Fields§
§from_key: Vec<u8>§edge_type_hash: u32§to_key: Vec<u8>Trait Implementations§
Source§impl Clone for DecodedEdgeKey
impl Clone for DecodedEdgeKey
Source§fn clone(&self) -> DecodedEdgeKey
fn clone(&self) -> DecodedEdgeKey
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 DecodedEdgeKey
impl RefUnwindSafe for DecodedEdgeKey
impl Send for DecodedEdgeKey
impl Sync for DecodedEdgeKey
impl Unpin for DecodedEdgeKey
impl UnsafeUnpin for DecodedEdgeKey
impl UnwindSafe for DecodedEdgeKey
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