pub struct TextPath {
pub name: Option<Vec<f64>>,
pub bezier_curve: Option<TextPathBezierCurve>,
pub data: TextPathData,
pub uuid: Option<String>,
}Expand description
TS TextPath.
Fields§
§name: Option<Vec<f64>>TODO: this is probably not a name (upstream note)
bezier_curve: Option<TextPathBezierCurve>§data: TextPathData§uuid: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for TextPath
impl RefUnwindSafe for TextPath
impl Send for TextPath
impl Sync for TextPath
impl Unpin for TextPath
impl UnsafeUnpin for TextPath
impl UnwindSafe for TextPath
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