#[repr(C)]pub struct TessellatedColoredSvgNodeVec { /* private fields */ }
Implementations§
Source§impl TessellatedColoredSvgNodeVec
impl TessellatedColoredSvgNodeVec
pub fn new() -> TessellatedColoredSvgNodeVec
pub fn with_capacity(cap: usize) -> TessellatedColoredSvgNodeVec
pub const fn from_const_slice( input: &'static [TessellatedColoredSvgNode], ) -> TessellatedColoredSvgNodeVec
pub fn from_vec( input: Vec<TessellatedColoredSvgNode>, ) -> TessellatedColoredSvgNodeVec
pub fn iter(&self) -> Iter<'_, TessellatedColoredSvgNode>
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<&TessellatedColoredSvgNode>
pub fn as_slice(&self) -> &[TessellatedColoredSvgNode]
Source§impl TessellatedColoredSvgNodeVec
impl TessellatedColoredSvgNodeVec
pub fn from_copy_on_write( input: Cow<'static, [TessellatedColoredSvgNode]>, ) -> TessellatedColoredSvgNodeVec
Sourcepub fn clone_self(&self) -> TessellatedColoredSvgNodeVec
pub fn clone_self(&self) -> TessellatedColoredSvgNodeVec
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<TessellatedColoredSvgNode>
pub fn into_library_owned_vec(self) -> Vec<TessellatedColoredSvgNode>
NOTE: CLONES the memory if the memory is external or &’static Moves the memory out if the memory is library-allocated
Source§impl TessellatedColoredSvgNodeVec
impl TessellatedColoredSvgNodeVec
pub fn get_ref(&self) -> TessellatedColoredSvgNodeVecRef
Trait Implementations§
Source§impl AsRef<[TessellatedColoredSvgNode]> for TessellatedColoredSvgNodeVec
impl AsRef<[TessellatedColoredSvgNode]> for TessellatedColoredSvgNodeVec
Source§fn as_ref(&self) -> &[TessellatedColoredSvgNode]
fn as_ref(&self) -> &[TessellatedColoredSvgNode]
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for TessellatedColoredSvgNodeVec
impl Clone for TessellatedColoredSvgNodeVec
Source§fn clone(&self) -> TessellatedColoredSvgNodeVec
fn clone(&self) -> TessellatedColoredSvgNodeVec
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 TessellatedColoredSvgNodeVec
impl Debug for TessellatedColoredSvgNodeVec
Source§impl Default for TessellatedColoredSvgNodeVec
impl Default for TessellatedColoredSvgNodeVec
Source§fn default() -> TessellatedColoredSvgNodeVec
fn default() -> TessellatedColoredSvgNodeVec
Returns the “default value” for a type. Read more
Source§impl Drop for TessellatedColoredSvgNodeVec
impl Drop for TessellatedColoredSvgNodeVec
Source§impl From<&'static [TessellatedColoredSvgNode]> for TessellatedColoredSvgNodeVec
impl From<&'static [TessellatedColoredSvgNode]> for TessellatedColoredSvgNodeVec
Source§fn from(
input: &'static [TessellatedColoredSvgNode],
) -> TessellatedColoredSvgNodeVec
fn from( input: &'static [TessellatedColoredSvgNode], ) -> TessellatedColoredSvgNodeVec
Converts to this type from the input type.
Source§impl From<Vec<TessellatedColoredSvgNode>> for TessellatedColoredSvgNodeVec
impl From<Vec<TessellatedColoredSvgNode>> for TessellatedColoredSvgNodeVec
Source§fn from(input: Vec<TessellatedColoredSvgNode>) -> TessellatedColoredSvgNodeVec
fn from(input: Vec<TessellatedColoredSvgNode>) -> TessellatedColoredSvgNodeVec
Converts to this type from the input type.
Source§impl FromIterator<TessellatedColoredSvgNode> for TessellatedColoredSvgNodeVec
impl FromIterator<TessellatedColoredSvgNode> for TessellatedColoredSvgNodeVec
Source§fn from_iter<T>(iter: T) -> TessellatedColoredSvgNodeVecwhere
T: IntoIterator<Item = TessellatedColoredSvgNode>,
fn from_iter<T>(iter: T) -> TessellatedColoredSvgNodeVecwhere
T: IntoIterator<Item = TessellatedColoredSvgNode>,
Creates a value from an iterator. Read more
Source§impl PartialOrd for TessellatedColoredSvgNodeVec
impl PartialOrd for TessellatedColoredSvgNodeVec
impl Send for TessellatedColoredSvgNodeVec
impl Sync for TessellatedColoredSvgNodeVec
Auto Trait Implementations§
impl Freeze for TessellatedColoredSvgNodeVec
impl RefUnwindSafe for TessellatedColoredSvgNodeVec
impl Unpin for TessellatedColoredSvgNodeVec
impl UnwindSafe for TessellatedColoredSvgNodeVec
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