[][src]Struct splinter::registry::NodeBuilder

pub struct NodeBuilder { /* fields omitted */ }

A builder for creating new nodes.

Implementations

impl NodeBuilder[src]

pub fn new<S: Into<String>>(identity: S) -> Self[src]

Create a new NodeBuilder with the node's identity.

pub fn with_endpoint<S: Into<String>>(self, endpoint: S) -> Self[src]

Add the endpoint to the builder.

pub fn with_endpoints<V: Into<Vec<String>>>(self, endpoints: V) -> Self[src]

Add all of the endpoints to the builder.

pub fn with_display_name<S: Into<String>>(self, display_name: S) -> Self[src]

Set the node's display_name.

pub fn with_key<S: Into<String>>(self, key: S) -> Self[src]

Add the key to the builder.

pub fn with_keys<V: Into<Vec<String>>>(self, keys: V) -> Self[src]

Add all of the keys to the builder.

pub fn with_metadata<S: Into<String>>(self, key: S, value: S) -> Self[src]

Add the key/value pair to the node's metadata.

pub fn build(self) -> Result<Node, InvalidNodeError>[src]

Attempt to build the Node.

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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<P, N> IntoBytes<P> for N where
    P: Message + FromNative<N>, 
[src]

impl<N, P> IntoNative<N> for P where
    N: FromProto<P>, 
[src]

impl<N, P> IntoProto<P> for N where
    P: FromNative<N>, 
[src]

impl<T> IntoSql for T

impl<T> Same<T> for T

type Output = T

Should always be Self

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<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,