pub struct FrameTree {
pub frame: Frame,
pub child_frames: Option<Vec<FrameTree>>,
}
Expand description
Information about the Frame hierarchy. FrameTree
Fields§
§frame: Frame
Frame information for this tree item.
child_frames: Option<Vec<FrameTree>>
Child frames.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FrameTree
impl<'de> Deserialize<'de> for FrameTree
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<FrameTree, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<FrameTree, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for FrameTree
impl Serialize for FrameTree
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for FrameTree
Auto Trait Implementations§
impl Freeze for FrameTree
impl RefUnwindSafe for FrameTree
impl Send for FrameTree
impl Sync for FrameTree
impl Unpin for FrameTree
impl UnwindSafe for FrameTree
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