pub struct NodeDataInlineCssPropertyVec { /* private fields */ }Implementations§
Source§impl NodeDataInlineCssPropertyVec
impl NodeDataInlineCssPropertyVec
pub fn parse_normal(s: &str) -> Self
pub fn parse_hover(s: &str) -> Self
pub fn parse_active(s: &str) -> Self
pub fn parse_focus(s: &str) -> Self
pub fn with_append(&self, other: Self) -> Self
Source§impl NodeDataInlineCssPropertyVec
impl NodeDataInlineCssPropertyVec
pub fn new() -> NodeDataInlineCssPropertyVec
pub fn with_capacity(cap: usize) -> Self
pub const fn from_const_slice( input: &'static [NodeDataInlineCssProperty], ) -> Self
pub fn from_vec(input: Vec<NodeDataInlineCssProperty>) -> Self
pub fn iter(&self) -> Iter<'_, NodeDataInlineCssProperty>
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<&NodeDataInlineCssProperty>
pub fn as_slice(&self) -> &[NodeDataInlineCssProperty]
Source§impl NodeDataInlineCssPropertyVec
impl NodeDataInlineCssPropertyVec
pub fn from_copy_on_write( input: Cow<'static, [NodeDataInlineCssProperty]>, ) -> NodeDataInlineCssPropertyVec
Sourcepub fn clone_self(&self) -> Self
pub fn clone_self(&self) -> Self
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<NodeDataInlineCssProperty>
pub fn into_library_owned_vec(self) -> Vec<NodeDataInlineCssProperty>
NOTE: CLONES the memory if the memory is external or &’static Moves the memory out if the memory is library-allocated
Trait Implementations§
Source§impl AsRef<[NodeDataInlineCssProperty]> for NodeDataInlineCssPropertyVec
impl AsRef<[NodeDataInlineCssProperty]> for NodeDataInlineCssPropertyVec
Source§fn as_ref(&self) -> &[NodeDataInlineCssProperty]
fn as_ref(&self) -> &[NodeDataInlineCssProperty]
Converts this type into a shared reference of the (usually inferred) input type.
Source§impl Clone for NodeDataInlineCssPropertyVec
impl Clone for NodeDataInlineCssPropertyVec
Source§impl Debug for NodeDataInlineCssPropertyVec
impl Debug for NodeDataInlineCssPropertyVec
Source§impl Drop for NodeDataInlineCssPropertyVec
impl Drop for NodeDataInlineCssPropertyVec
Source§impl From<&'static [NodeDataInlineCssProperty]> for NodeDataInlineCssPropertyVec
impl From<&'static [NodeDataInlineCssProperty]> for NodeDataInlineCssPropertyVec
Source§fn from(
input: &'static [NodeDataInlineCssProperty],
) -> NodeDataInlineCssPropertyVec
fn from( input: &'static [NodeDataInlineCssProperty], ) -> NodeDataInlineCssPropertyVec
Converts to this type from the input type.
Source§impl From<Vec<NodeDataInlineCssProperty>> for NodeDataInlineCssPropertyVec
impl From<Vec<NodeDataInlineCssProperty>> for NodeDataInlineCssPropertyVec
Source§fn from(input: Vec<NodeDataInlineCssProperty>) -> NodeDataInlineCssPropertyVec
fn from(input: Vec<NodeDataInlineCssProperty>) -> NodeDataInlineCssPropertyVec
Converts to this type from the input type.
Source§impl FromIterator<NodeDataInlineCssProperty> for NodeDataInlineCssPropertyVec
impl FromIterator<NodeDataInlineCssProperty> for NodeDataInlineCssPropertyVec
Source§fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = NodeDataInlineCssProperty>,
fn from_iter<T>(iter: T) -> Selfwhere
T: IntoIterator<Item = NodeDataInlineCssProperty>,
Creates a value from an iterator. Read more
Source§impl Hash for NodeDataInlineCssPropertyVec
impl Hash for NodeDataInlineCssPropertyVec
Source§impl Ord for NodeDataInlineCssPropertyVec
impl Ord for NodeDataInlineCssPropertyVec
Source§impl PartialOrd for NodeDataInlineCssPropertyVec
impl PartialOrd for NodeDataInlineCssPropertyVec
impl Eq for NodeDataInlineCssPropertyVec
impl Send for NodeDataInlineCssPropertyVec
impl Sync for NodeDataInlineCssPropertyVec
Auto Trait Implementations§
impl Freeze for NodeDataInlineCssPropertyVec
impl RefUnwindSafe for NodeDataInlineCssPropertyVec
impl Unpin for NodeDataInlineCssPropertyVec
impl UnwindSafe for NodeDataInlineCssPropertyVec
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