pub struct RenderCandidate {
pub node_index: u32,
pub url: String,
pub priority: f32,
}Expand description
Information about a node that needs rendering.
Fields§
§node_index: u32Node index in the SiteMap.
url: StringURL to render.
priority: f32Priority score (higher = render first).
Trait Implementations§
Source§impl Clone for RenderCandidate
impl Clone for RenderCandidate
Source§fn clone(&self) -> RenderCandidate
fn clone(&self) -> RenderCandidate
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 moreAuto Trait Implementations§
impl Freeze for RenderCandidate
impl RefUnwindSafe for RenderCandidate
impl Send for RenderCandidate
impl Sync for RenderCandidate
impl Unpin for RenderCandidate
impl UnsafeUnpin for RenderCandidate
impl UnwindSafe for RenderCandidate
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