pub struct BfsCacheKey {
pub start: i64,
pub depth: u32,
}Expand description
Cache key for BFS queries
Fields§
§start: i64§depth: u32Trait Implementations§
Source§impl Clone for BfsCacheKey
impl Clone for BfsCacheKey
Source§fn clone(&self) -> BfsCacheKey
fn clone(&self) -> BfsCacheKey
Returns a duplicate of the value. Read more
1.0.0 · 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 BfsCacheKey
impl Debug for BfsCacheKey
Source§impl PartialEq for BfsCacheKey
impl PartialEq for BfsCacheKey
impl Eq for BfsCacheKey
impl StructuralPartialEq for BfsCacheKey
Auto Trait Implementations§
impl Freeze for BfsCacheKey
impl RefUnwindSafe for BfsCacheKey
impl Send for BfsCacheKey
impl Sync for BfsCacheKey
impl Unpin for BfsCacheKey
impl UnwindSafe for BfsCacheKey
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