#[repr(transparent)]pub struct OH_Drawing_PathIteratorVerb(pub c_uint);Available on crate feature
api-23 only.Expand description
Enumerates the path operation types contained in an iterator. It is used to read path operation instructions.
Available since API-level: 23
Tuple Fields§
§0: c_uintImplementations§
Source§impl OH_Drawing_PathIteratorVerb
impl OH_Drawing_PathIteratorVerb
Sourcepub const MOVE: OH_Drawing_PathIteratorVerb
pub const MOVE: OH_Drawing_PathIteratorVerb
Sets the start point.
Sourcepub const LINE: OH_Drawing_PathIteratorVerb
pub const LINE: OH_Drawing_PathIteratorVerb
Adds a line segment.
Sourcepub const QUAD: OH_Drawing_PathIteratorVerb
pub const QUAD: OH_Drawing_PathIteratorVerb
Adds a quadratic Bezier curve for smooth transitions.
Sourcepub const CONIC: OH_Drawing_PathIteratorVerb
pub const CONIC: OH_Drawing_PathIteratorVerb
Adds a conic curve.
Sourcepub const CUBIC: OH_Drawing_PathIteratorVerb
pub const CUBIC: OH_Drawing_PathIteratorVerb
Adds a cubic Bezier curve for smooth transitions.
Sourcepub const CLOSE: OH_Drawing_PathIteratorVerb
pub const CLOSE: OH_Drawing_PathIteratorVerb
Closes a path.
Sourcepub const DONE: OH_Drawing_PathIteratorVerb
pub const DONE: OH_Drawing_PathIteratorVerb
The path setting is complete.
Trait Implementations§
Source§impl Clone for OH_Drawing_PathIteratorVerb
impl Clone for OH_Drawing_PathIteratorVerb
Source§fn clone(&self) -> OH_Drawing_PathIteratorVerb
fn clone(&self) -> OH_Drawing_PathIteratorVerb
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OH_Drawing_PathIteratorVerb
impl Debug for OH_Drawing_PathIteratorVerb
Source§impl Hash for OH_Drawing_PathIteratorVerb
impl Hash for OH_Drawing_PathIteratorVerb
Source§impl PartialEq for OH_Drawing_PathIteratorVerb
impl PartialEq for OH_Drawing_PathIteratorVerb
Source§fn eq(&self, other: &OH_Drawing_PathIteratorVerb) -> bool
fn eq(&self, other: &OH_Drawing_PathIteratorVerb) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for OH_Drawing_PathIteratorVerb
impl Eq for OH_Drawing_PathIteratorVerb
impl StructuralPartialEq for OH_Drawing_PathIteratorVerb
Auto Trait Implementations§
impl Freeze for OH_Drawing_PathIteratorVerb
impl RefUnwindSafe for OH_Drawing_PathIteratorVerb
impl Send for OH_Drawing_PathIteratorVerb
impl Sync for OH_Drawing_PathIteratorVerb
impl Unpin for OH_Drawing_PathIteratorVerb
impl UnsafeUnpin for OH_Drawing_PathIteratorVerb
impl UnwindSafe for OH_Drawing_PathIteratorVerb
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