#[repr(C)]pub struct TessellatedSvgNodeVec { /* private fields */ }
Implementations§
Source§impl TessellatedSvgNodeVec
impl TessellatedSvgNodeVec
pub fn new() -> TessellatedSvgNodeVec
pub fn with_capacity(cap: usize) -> TessellatedSvgNodeVec
pub const fn from_const_slice( input: &'static [TessellatedSvgNode], ) -> TessellatedSvgNodeVec
pub fn from_vec(input: Vec<TessellatedSvgNode>) -> TessellatedSvgNodeVec
pub fn iter(&self) -> Iter<'_, TessellatedSvgNode>
pub fn ptr_as_usize(&self) -> usize
pub const fn len(&self) -> usize
pub const fn capacity(&self) -> usize
pub const fn is_empty(&self) -> bool
pub fn get(&self, index: usize) -> Option<&TessellatedSvgNode>
pub fn as_slice(&self) -> &[TessellatedSvgNode]
Source§impl TessellatedSvgNodeVec
impl TessellatedSvgNodeVec
pub fn from_copy_on_write( input: Cow<'static, [TessellatedSvgNode]>, ) -> TessellatedSvgNodeVec
Sourcepub fn clone_self(&self) -> TessellatedSvgNodeVec
pub fn clone_self(&self) -> TessellatedSvgNodeVec
NOTE: CLONES the memory if the memory is external or &’static Moves the memory out if the memory is library-allocated
Sourcepub fn into_library_owned_vec(self) -> Vec<TessellatedSvgNode>
pub fn into_library_owned_vec(self) -> Vec<TessellatedSvgNode>
NOTE: CLONES the memory if the memory is external or &’static Moves the memory out if the memory is library-allocated
Source§impl TessellatedSvgNodeVec
impl TessellatedSvgNodeVec
pub fn get_ref(&self) -> TessellatedSvgNodeVecRef
Trait Implementations§
Source§impl AsRef<[TessellatedSvgNode]> for TessellatedSvgNodeVec
impl AsRef<[TessellatedSvgNode]> for TessellatedSvgNodeVec
Source§fn as_ref(&self) -> &[TessellatedSvgNode]
fn as_ref(&self) -> &[TessellatedSvgNode]
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for TessellatedSvgNodeVec
impl Clone for TessellatedSvgNodeVec
Source§fn clone(&self) -> TessellatedSvgNodeVec
fn clone(&self) -> TessellatedSvgNodeVec
Returns a copy of the value. Read more
1.0.0 · 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 TessellatedSvgNodeVec
impl Debug for TessellatedSvgNodeVec
Source§impl Default for TessellatedSvgNodeVec
impl Default for TessellatedSvgNodeVec
Source§fn default() -> TessellatedSvgNodeVec
fn default() -> TessellatedSvgNodeVec
Returns the “default value” for a type. Read more
Source§impl Drop for TessellatedSvgNodeVec
impl Drop for TessellatedSvgNodeVec
Source§impl From<&'static [TessellatedSvgNode]> for TessellatedSvgNodeVec
impl From<&'static [TessellatedSvgNode]> for TessellatedSvgNodeVec
Source§fn from(input: &'static [TessellatedSvgNode]) -> TessellatedSvgNodeVec
fn from(input: &'static [TessellatedSvgNode]) -> TessellatedSvgNodeVec
Converts to this type from the input type.
Source§impl From<Vec<TessellatedSvgNode>> for TessellatedSvgNodeVec
impl From<Vec<TessellatedSvgNode>> for TessellatedSvgNodeVec
Source§fn from(input: Vec<TessellatedSvgNode>) -> TessellatedSvgNodeVec
fn from(input: Vec<TessellatedSvgNode>) -> TessellatedSvgNodeVec
Converts to this type from the input type.
Source§impl FromIterator<TessellatedSvgNode> for TessellatedSvgNodeVec
impl FromIterator<TessellatedSvgNode> for TessellatedSvgNodeVec
Source§fn from_iter<T>(iter: T) -> TessellatedSvgNodeVecwhere
T: IntoIterator<Item = TessellatedSvgNode>,
fn from_iter<T>(iter: T) -> TessellatedSvgNodeVecwhere
T: IntoIterator<Item = TessellatedSvgNode>,
Creates a value from an iterator. Read more
Source§impl PartialEq for TessellatedSvgNodeVec
impl PartialEq for TessellatedSvgNodeVec
Source§impl PartialOrd for TessellatedSvgNodeVec
impl PartialOrd for TessellatedSvgNodeVec
impl Send for TessellatedSvgNodeVec
impl Sync for TessellatedSvgNodeVec
Auto Trait Implementations§
impl Freeze for TessellatedSvgNodeVec
impl RefUnwindSafe for TessellatedSvgNodeVec
impl Unpin for TessellatedSvgNodeVec
impl UnwindSafe for TessellatedSvgNodeVec
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more