[][src]Struct yew_router::route::Route

pub struct Route<STATE = ()> {
    pub route: String,
    pub state: STATE,
}

The representation of a route, segmented into different sections for easy access.

Fields

route: String

The route string

state: STATE

The state stored in the history api

Implementations

impl Route<()>[src]

pub fn new_no_state<T: AsRef<str>>(route: T) -> Self[src]

Creates a new route with no state out of a string.

This Route will have () for its state.

impl<STATE: Default> Route<STATE>[src]

pub fn new_default_state<T: AsRef<str>>(route: T) -> Self[src]

Creates a new route out of a string, setting the state to its default value.

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, not chars or graphemes. In other words, it may not be what a human considers the length of the string.

Examples

Basic usage:

let a = String::from("foo");
assert_eq!(a.len(), 3);

let fancy_f = String::from("ƒoo");
assert_eq!(fancy_f.len(), 4);
assert_eq!(fancy_f.chars().count(), 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<STATE: Clone> Clone for Route<STATE>[src]

impl<STATE: Debug> Debug for Route<STATE>[src]

impl<STATE: Default> Default for Route<STATE>[src]

impl<STATE> Deref for Route<STATE>[src]

type Target = String

The resulting type after dereferencing.

impl<'de, STATE> Deserialize<'de> for Route<STATE> where
    STATE: Deserialize<'de>, 
[src]

impl<STATE> Display for Route<STATE>[src]

impl<SW: Switch, STATE: Default> From<SW> for Route<STATE>[src]

impl<STATE: PartialEq> PartialEq<Route<STATE>> for Route<STATE>[src]

impl<STATE> Serialize for Route<STATE> where
    STATE: Serialize
[src]

impl<STATE> StructuralPartialEq for Route<STATE>[src]

Auto Trait Implementations

impl<STATE> RefUnwindSafe for Route<STATE> where
    STATE: RefUnwindSafe

impl<STATE> Send for Route<STATE> where
    STATE: Send

impl<STATE> Sync for Route<STATE> where
    STATE: Sync

impl<STATE> Unpin for Route<STATE> where
    STATE: Unpin

impl<STATE> UnwindSafe for Route<STATE> where
    STATE: UnwindSafe

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> RouteState for T where
    T: Serialize + DeserializeOwned + Debug + Clone + Default + 'static, 
[src]

impl<STATE> RouterState for STATE where
    STATE: RouteState + PartialEq<STATE>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.