pub enum UmlGenerationMode {
AllNodes,
Neighs(String),
}Expand description
Modes for controlling what content is included in the generated UML diagram.
Variants§
AllNodes
Include all nodes in the diagram
Neighs(String)
Include only the neighbors of a specific node
Implementations§
Source§impl UmlGenerationMode
impl UmlGenerationMode
Sourcepub fn all() -> UmlGenerationMode
pub fn all() -> UmlGenerationMode
Trait Implementations§
Source§impl Clone for UmlGenerationMode
impl Clone for UmlGenerationMode
Source§fn clone(&self) -> UmlGenerationMode
fn clone(&self) -> UmlGenerationMode
Returns a duplicate 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 UmlGenerationMode
impl Debug for UmlGenerationMode
Source§impl Default for UmlGenerationMode
impl Default for UmlGenerationMode
Source§fn default() -> UmlGenerationMode
fn default() -> UmlGenerationMode
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UmlGenerationMode
impl RefUnwindSafe for UmlGenerationMode
impl Send for UmlGenerationMode
impl Sync for UmlGenerationMode
impl Unpin for UmlGenerationMode
impl UnsafeUnpin for UmlGenerationMode
impl UnwindSafe for UmlGenerationMode
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