pub struct DefiniteStatusPathSearch {
pub paths: Vec<DefiniteStatusPath>,
pub truncated: bool,
}Expand description
Bounded enumeration of definite-status paths, with a truncation flag.
Fields§
§paths: Vec<DefiniteStatusPath>Paths found within the budget.
truncated: booltrue if max_paths / max_len cut the search short (result may be incomplete).
Trait Implementations§
Source§impl Clone for DefiniteStatusPathSearch
impl Clone for DefiniteStatusPathSearch
Source§fn clone(&self) -> DefiniteStatusPathSearch
fn clone(&self) -> DefiniteStatusPathSearch
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 moreSource§impl Debug for DefiniteStatusPathSearch
impl Debug for DefiniteStatusPathSearch
impl Eq for DefiniteStatusPathSearch
Source§impl PartialEq for DefiniteStatusPathSearch
impl PartialEq for DefiniteStatusPathSearch
impl StructuralPartialEq for DefiniteStatusPathSearch
Auto Trait Implementations§
impl Freeze for DefiniteStatusPathSearch
impl RefUnwindSafe for DefiniteStatusPathSearch
impl Send for DefiniteStatusPathSearch
impl Sync for DefiniteStatusPathSearch
impl Unpin for DefiniteStatusPathSearch
impl UnsafeUnpin for DefiniteStatusPathSearch
impl UnwindSafe for DefiniteStatusPathSearch
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