pub struct TextPath {
pub start_offset: f64,
pub path: Rc<PathData>,
}
Expand description
A path used by text-on-path.
Fields§
§start_offset: f64
A text offset in SVG coordinates.
Percentage values already resolved.
path: Rc<PathData>
A path.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for TextPath
impl !Send for TextPath
impl !Sync for TextPath
impl Unpin 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