Struct urbit_http_api::interface::ShipInterface[][src]

pub struct ShipInterface {
    pub url: String,
    pub session_auth: HeaderValue,
    pub ship_name: String,
    // some fields omitted
}

Fields

url: String

The URL of the ship given as http://ip:port such as http://0.0.0.0:8080.

session_auth: HeaderValue

The session auth string header value

ship_name: String

The ship name (without a leading ~)

Implementations

impl ShipInterface[src]

pub fn new(ship_url: &str, ship_code: &str) -> Result<ShipInterface>[src]

Logs into the given ship and creates a new ShipInterface. ship_url should be http://ip:port of the given ship. Example: http://0.0.0.0:8080. ship_code is the code acquire from your ship by typing +code in dojo.

pub fn ship_name_with_sig(&self) -> String[src]

Returns the ship name with a leading ~ (By default ship_name does not have one)

pub fn create_channel(&self) -> Result<Channel>[src]

Create a Channel using this ShipInterface

pub fn send_put_request(&self, url: &str, body: &JsonValue) -> Result<Response>[src]

pub fn scry(&self, app: &str, path: &str, mark: &str) -> Result<Response>[src]

Sends a scry to the ship

pub fn spider(
    &self,
    input_mark: &str,
    output_mark: &str,
    thread_name: &str,
    body: &JsonValue
) -> Result<Response>
[src]

Run a thread via spider

Trait Implementations

impl Clone for ShipInterface[src]

impl Debug for ShipInterface[src]

impl Default for ShipInterface[src]

Auto Trait Implementations

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