pub enum FillVariant {
AbsIndex(u8),
RelativeIndex(String),
Boundary(Boundary),
AxisValue(AxisValue),
}
Variants§
Trait Implementations§
Source§impl Clone for FillVariant
impl Clone for FillVariant
Source§fn clone(&self) -> FillVariant
fn clone(&self) -> FillVariant
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 FillVariant
impl Debug for FillVariant
Source§impl<'de> Deserialize<'de> for FillVariant
impl<'de> Deserialize<'de> for FillVariant
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
Auto Trait Implementations§
impl Freeze for FillVariant
impl RefUnwindSafe for FillVariant
impl Send for FillVariant
impl Sync for FillVariant
impl Unpin for FillVariant
impl UnwindSafe for FillVariant
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