pub enum LayoutScope {
Diagram,
Group(String),
}Expand description
Semantic scope of a layout block.
Variants§
Diagram
The root diagram layout.
Group(String)
The layout of the group with this globally unique identifier.
Trait Implementations§
Source§impl Clone for LayoutScope
impl Clone for LayoutScope
Source§fn clone(&self) -> LayoutScope
fn clone(&self) -> LayoutScope
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 moreSource§impl Debug for LayoutScope
impl Debug for LayoutScope
impl Eq for LayoutScope
Source§impl PartialEq for LayoutScope
impl PartialEq for LayoutScope
impl StructuralPartialEq for LayoutScope
Auto Trait Implementations§
impl Freeze for LayoutScope
impl RefUnwindSafe for LayoutScope
impl Send for LayoutScope
impl Sync for LayoutScope
impl Unpin for LayoutScope
impl UnsafeUnpin for LayoutScope
impl UnwindSafe for LayoutScope
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