pub enum PageElementFrame<A> {
Value(String),
Page {
name: String,
attribute_order: Vec<A>,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl<A> Freeze for PageElementFrame<A>
impl<A> RefUnwindSafe for PageElementFrame<A>where
A: RefUnwindSafe,
impl<A> Send for PageElementFrame<A>where
A: Send,
impl<A> Sync for PageElementFrame<A>where
A: Sync,
impl<A> Unpin for PageElementFrame<A>where
A: Unpin,
impl<A> UnwindSafe for PageElementFrame<A>where
A: UnwindSafe,
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