[][src]Struct dep_obj::Style

pub struct Style<Owner: DepType> { /* fields omitted */ }

Implementations

impl<Owner: DepType> Style<Owner>[src]

pub fn new() -> Self[src]

pub fn with_capacity(capacity: usize) -> Self[src]

pub fn capacity(&self) -> usize[src]

pub fn clear(&mut self)[src]

pub fn contains_prop<PropType: DepPropType>(
    &self,
    prop: DepProp<Owner, PropType>
) -> bool
[src]

pub fn insert<PropType: DepPropType>(
    &mut self,
    prop: DepProp<Owner, PropType>,
    value: PropType
) -> bool where
    Owner: 'static, 
[src]

pub fn is_empty(&self) -> bool[src]

pub fn len(&self) -> usize[src]

pub fn remove<PropType: DepPropType>(
    &mut self,
    prop: DepProp<Owner, PropType>
) -> bool
[src]

pub fn reserve(&mut self, additional: usize)[src]

pub fn shrink_to(&mut self, min_capacity: usize)[src]

pub fn shrink_to_fit(&mut self)[src]

pub fn try_reserve(&mut self, additional: usize) -> Result<(), TryReserveError>[src]

Trait Implementations

impl<Owner: DepType> Clone for Style<Owner>[src]

impl<Owner: DepType> Debug for Style<Owner>[src]

impl<Owner: DepType> Default for Style<Owner>[src]

Auto Trait Implementations

impl<Owner> !RefUnwindSafe for Style<Owner>

impl<Owner> Send for Style<Owner>

impl<Owner> Sync for Style<Owner>

impl<Owner> Unpin for Style<Owner>

impl<Owner> !UnwindSafe for Style<Owner>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<PropType> DepPropType for PropType where
    PropType: 'static + Clone + Send + Sync + Debug
[src]

impl<T> DynClone for T where
    T: Clone
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,