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