pub enum AnyIdOrDefaults {
NodeDefaults,
EdgeDefaults,
AnyId(AnyId),
}Expand description
Key for users to specify tailwind styles against individual nodes, edges, or tags.
Variants§
NodeDefaults
Styles to apply to all nodes.
EdgeDefaults
Styles to apply to all edges.
AnyId(AnyId)
ID of a node, edge, or tag.
Implementations§
Trait Implementations§
Source§impl Clone for AnyIdOrDefaults
impl Clone for AnyIdOrDefaults
Source§fn clone(&self) -> AnyIdOrDefaults
fn clone(&self) -> AnyIdOrDefaults
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 AnyIdOrDefaults
impl Debug for AnyIdOrDefaults
Source§impl<'de> Deserialize<'de> for AnyIdOrDefaults
impl<'de> Deserialize<'de> for AnyIdOrDefaults
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<AnyId> for AnyIdOrDefaults
impl From<AnyId> for AnyIdOrDefaults
Source§impl Hash for AnyIdOrDefaults
impl Hash for AnyIdOrDefaults
Source§impl PartialEq for AnyIdOrDefaults
impl PartialEq for AnyIdOrDefaults
Source§impl Serialize for AnyIdOrDefaults
impl Serialize for AnyIdOrDefaults
impl Eq for AnyIdOrDefaults
impl StructuralPartialEq for AnyIdOrDefaults
Auto Trait Implementations§
impl Freeze for AnyIdOrDefaults
impl RefUnwindSafe for AnyIdOrDefaults
impl Send for AnyIdOrDefaults
impl Sync for AnyIdOrDefaults
impl Unpin for AnyIdOrDefaults
impl UnwindSafe for AnyIdOrDefaults
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.