pub struct NodeVisit {
pub uri: String,
pub node_type: NodeType,
pub score: f64,
pub depth: usize,
pub layer_loaded: Option<LayerType>,
}Fields§
§uri: String§node_type: NodeType§score: f64§depth: usize§layer_loaded: Option<LayerType>Trait Implementations§
Source§impl<'de> Deserialize<'de> for NodeVisit
impl<'de> Deserialize<'de> for NodeVisit
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NodeVisit
impl RefUnwindSafe for NodeVisit
impl Send for NodeVisit
impl Sync for NodeVisit
impl Unpin for NodeVisit
impl UnsafeUnpin for NodeVisit
impl UnwindSafe for NodeVisit
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