Enum harmony_rust_sdk::api::chat::Place[][src]

pub enum Place {
    Top {
        before: u64,
    },
    Between {
        after: u64,
        before: u64,
    },
    Bottom {
        after: u64,
    },
}

Describes a place in a list.

Variants

Top

Top of the list.

Fields of Top

before: u64
Between

Between two items in the list.

Fields of Between

after: u64before: u64
Bottom

Bottom of the list.

Fields of Bottom

after: u64

Implementations

impl Place[src]

pub fn between(before: u64, after: u64) -> Self[src]

Create a place between two other places.

Example

let place = Place::between(2, 3);
assert_eq!(place.next(), 2);
assert_eq!(place.previous(), 3);

pub fn top(before: u64) -> Self[src]

Create a place at the top of a list.

Example

let place = Place::top(1);
assert_eq!(place.next(), 1);
assert_eq!(place.previous(), 0);

pub fn bottom(after: u64) -> Self[src]

Create a place at the bottom of a list.

Example

let place = Place::bottom(1);
assert_eq!(place.next(), 0);
assert_eq!(place.previous(), 1);

pub fn next(&self) -> u64[src]

Get next place ID.

Example

let place = Place::top(1);
assert_eq!(place.next(), 1);

pub fn previous(&self) -> u64[src]

Get previous place ID.

Example

let place = Place::bottom(1);
assert_eq!(place.previous(), 1);

Trait Implementations

impl Clone for Place[src]

impl Copy for Place[src]

impl Debug for Place[src]

impl Eq for Place[src]

impl PartialEq<Place> for Place[src]

impl StructuralEq for Place[src]

impl StructuralPartialEq for Place[src]

Auto Trait Implementations

impl RefUnwindSafe for Place

impl Send for Place

impl Sync for Place

impl Unpin for Place

impl UnwindSafe for Place

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T> Instrument for T[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,