pub struct HydrusPage {
pub key: String,
pub name: String,
pub page_type: PageType,
pub children: Vec<HydrusPage>,
/* private fields */
}Fields§
§key: String§name: String§page_type: PageType§children: Vec<HydrusPage>Implementations§
Trait Implementations§
Source§impl Clone for HydrusPage
impl Clone for HydrusPage
Source§fn clone(&self) -> HydrusPage
fn clone(&self) -> HydrusPage
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 !RefUnwindSafe for HydrusPage
impl !UnwindSafe for HydrusPage
impl Freeze for HydrusPage
impl Send for HydrusPage
impl Sync for HydrusPage
impl Unpin for HydrusPage
impl UnsafeUnpin for HydrusPage
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