Struct urbit_http_api::apps::collections::Collection[][src]

pub struct Collection<'a> {
    pub channel: &'a mut Channel,
}

A struct that provides an interface for interacting with Urbit collections

Fields

channel: &'a mut Channel

Implementations

impl<'a> Collection<'a>[src]

pub fn export_collection(
    &mut self,
    collection_ship: &str,
    collection_name: &str
) -> Result<Vec<Link>>
[src]

Extracts a Collection’s graph from the connected ship and parses it into a vector of Links.

Adds a new link to the specified Collection that your ship has access to. Returns the index of the link.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Collection<'a>

impl<'a> Send for Collection<'a>

impl<'a> Sync for Collection<'a>

impl<'a> Unpin for Collection<'a>

impl<'a> !UnwindSafe for Collection<'a>

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<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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