pub struct Image1d<'a>(/* private fields */);Trait Implementations§
Source§impl<'a> NodeWithMetadata<CssMetadata> for Image1d<'a>
impl<'a> NodeWithMetadata<CssMetadata> for Image1d<'a>
Source§fn self_metadata(&self) -> CssMetadata
fn self_metadata(&self) -> CssMetadata
Returns the metadata contributed by this node itself, not including children.
Most nodes don’t contribute metadata, so can simply return
M::default().
Nodes like StyleRule or AtRules should return their own node kind flags here.Source§fn metadata(&self) -> CssMetadata
fn metadata(&self) -> CssMetadata
Returns the complete aggregated metadata for this node (self + children).
Default implementation merges children’s metadata with self_metadata().
Source§impl<'a> Ord for Image1d<'a>
impl<'a> Ord for Image1d<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for Image1d<'a>
impl<'a> PartialOrd for Image1d<'a>
Source§impl<'a> SemanticEq for Image1d<'a>
impl<'a> SemanticEq for Image1d<'a>
Source§fn semantic_eq(&self, other: &Self) -> bool
fn semantic_eq(&self, other: &Self) -> bool
Returns
true if self and other are semantically equal.Source§impl<'a> ToCursors for Image1d<'a>
impl<'a> ToCursors for Image1d<'a>
fn to_cursors(&self, s: &mut impl CursorSink)
impl<'a> Eq for Image1d<'a>
impl<'a> StructuralPartialEq for Image1d<'a>
Auto Trait Implementations§
impl<'a> Freeze for Image1d<'a>
impl<'a> !RefUnwindSafe for Image1d<'a>
impl<'a> !Send for Image1d<'a>
impl<'a> !Sync for Image1d<'a>
impl<'a> Unpin for Image1d<'a>
impl<'a> !UnwindSafe for Image1d<'a>
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