[−][src]Struct typed_html::types::Class
A valid CSS class.
A CSS class is a non-empty string that starts with an alphanumeric character
and is followed by any number of alphanumeric characters and the
_, - and . characters.
See also Id.
Methods
impl Class[src]
pub fn new<S: Borrow<str>>(s: S) -> Self[src]
Construct a new class name from a string.
Panics if the provided string is invalid.
Methods from Deref<Target = String>
pub fn as_str(&self) -> &str1.7.0[src]
Extracts a string slice containing the entire String.
Examples
Basic usage:
let s = String::from("foo"); assert_eq!("foo", s.as_str());
pub fn capacity(&self) -> usize1.0.0[src]
Returns this String's capacity, in bytes.
Examples
Basic usage:
let s = String::with_capacity(10); assert!(s.capacity() >= 10);
pub fn as_bytes(&self) -> &[u8]1.0.0[src]
Returns a byte slice of this String's contents.
The inverse of this method is from_utf8.
Examples
Basic usage:
let s = String::from("hello"); assert_eq!(&[104, 101, 108, 108, 111], s.as_bytes());
pub fn len(&self) -> usize1.0.0[src]
Returns the length of this String, in bytes.
Examples
Basic usage:
let a = String::from("foo"); assert_eq!(a.len(), 3);
pub fn is_empty(&self) -> bool1.0.0[src]
Returns true if this String has a length of zero, and false otherwise.
Examples
Basic usage:
let mut v = String::new(); assert!(v.is_empty()); v.push('a'); assert!(!v.is_empty());
Trait Implementations
impl Ord for Class[src]
fn cmp(&self, other: &Class) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
fn clamp(self, min: Self, max: Self) -> Self[src]
clamp)Restrict a value to a certain interval. Read more
impl Clone for Class[src]
fn clone(&self) -> Class[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Eq for Class[src]
impl From<Id> for Class[src]
impl From<Class> for Id[src]
impl<'a> From<&'a Class> for Id[src]
impl PartialEq<Class> for Class[src]
impl PartialOrd<Class> for Class[src]
fn partial_cmp(&self, other: &Class) -> Option<Ordering>[src]
fn lt(&self, other: &Class) -> bool[src]
fn le(&self, other: &Class) -> bool[src]
fn gt(&self, other: &Class) -> bool[src]
fn ge(&self, other: &Class) -> bool[src]
impl Hash for Class[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Display for Class[src]
impl Debug for Class[src]
impl<'a> TryFrom<&'a str> for Class[src]
type Error = &'static str
The type returned in the event of a conversion error.
fn try_from(str: &'a str) -> Result<Self, Self::Error>[src]
impl FromStr for Class[src]
type Err = &'static str
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>[src]
impl Deref for Class[src]
Auto Trait Implementations
impl Sync for Class
impl Unpin for Class
impl Send for Class
impl UnwindSafe for Class
impl RefUnwindSafe for Class
Blanket Implementations
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,