Struct mupdf::path::Path

source ·
pub struct Path { /* private fields */ }

Implementations§

source§

impl Path

source

pub fn new() -> Result<Self, Error>

source

pub fn try_clone(&self) -> Result<Self, Error>

source

pub fn walk(&self, walker: &mut dyn PathWalker) -> Result<(), Error>

source

pub fn current_point(&self) -> Point

source

pub fn move_to(&mut self, x: f32, y: f32) -> Result<(), Error>

source

pub fn line_to(&mut self, x: f32, y: f32) -> Result<(), Error>

source

pub fn curve_to( &mut self, cx1: f32, cy1: f32, cx2: f32, cy2: f32, ex: f32, ey: f32 ) -> Result<(), Error>

source

pub fn curve_to_v( &mut self, cx: f32, cy: f32, ex: f32, ey: f32 ) -> Result<(), Error>

source

pub fn curve_to_y( &mut self, cx: f32, cy: f32, ex: f32, ey: f32 ) -> Result<(), Error>

source

pub fn rect(&mut self, x1: i32, y1: i32, x2: i32, y2: i32) -> Result<(), Error>

source

pub fn close(&mut self) -> Result<(), Error>

source

pub fn transform(&mut self, mat: &Matrix) -> Result<(), Error>

source

pub fn bounds(&self, stroke: &StrokeState, ctm: &Matrix) -> Result<Rect, Error>

source

pub fn trim(&mut self) -> Result<(), Error>

Trait Implementations§

source§

impl Clone for Path

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Path

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Drop for Path

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl Freeze for Path

§

impl RefUnwindSafe for Path

§

impl !Send for Path

§

impl !Sync for Path

§

impl Unpin for Path

§

impl UnwindSafe for Path

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.