Skip to content

Commit

Permalink
Run cargo fmt --all.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Oct 12, 2024
1 parent 8ae262c commit b5bb99c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions crate/model/src/common/graphviz_attrs/fixed_size.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ use serde::{Deserialize, Serialize};
#[derive(Clone, Copy, Debug, Default, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
pub enum FixedSize {
/// Nodes are not fixed size, and `width`/`height` indicate their minimum dimensions.
/// Nodes are not fixed size, and `width`/`height` indicate their minimum
/// dimensions.
#[default]
False,
/// Nodes are fixed size, and `width`/`height` indicate their maximum dimensions.
/// Nodes are fixed size, and `width`/`height` indicate their maximum
/// dimensions.
True,
/// `width` and `height` determine the dimensions of the node's shape, but not its label.
/// `width` and `height` determine the dimensions of the node's shape, but
/// not its label.
Shape,
}

Expand Down

0 comments on commit b5bb99c

Please sign in to comment.