pub struct PageInformation {
pub name: String,
pub page_key: String,
pub page_type: u32,
pub selected: Option<bool>,
pub pages: Vec<PageInformation>,
}
Fields§
§name: String
§page_key: String
§page_type: u32
§selected: Option<bool>
§pages: Vec<PageInformation>
Trait Implementations§
Source§impl Clone for PageInformation
impl Clone for PageInformation
Source§fn clone(&self) -> PageInformation
fn clone(&self) -> PageInformation
Returns a copy 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 PageInformation
impl Debug for PageInformation
Source§impl<'de> Deserialize<'de> for PageInformation
impl<'de> Deserialize<'de> for PageInformation
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 PageInformation
impl RefUnwindSafe for PageInformation
impl Send for PageInformation
impl Sync for PageInformation
impl Unpin for PageInformation
impl UnwindSafe for PageInformation
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