pub struct TrailMark {
pub name: String,
pub clip: bool,
pub len: u32,
pub gradients: Vec<Gradient>,
pub stroke: ColorOrGradient,
pub x: EncodingValue<f32>,
pub y: EncodingValue<f32>,
pub size: EncodingValue<f32>,
pub defined: EncodingValue<bool>,
pub zindex: Option<i32>,
}Fields§
§name: String§clip: bool§len: u32§gradients: Vec<Gradient>§stroke: ColorOrGradient§x: EncodingValue<f32>§y: EncodingValue<f32>§size: EncodingValue<f32>§defined: EncodingValue<bool>§zindex: Option<i32>Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for TrailMark
impl<'de> Deserialize<'de> for TrailMark
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 RefUnwindSafe for TrailMark
impl Send for TrailMark
impl Sync for TrailMark
impl Unpin for TrailMark
impl UnwindSafe for TrailMark
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