[][src]Struct misskey_util::builder::ChannelBuilder

pub struct ChannelBuilder<C> { /* fields omitted */ }

Builder for the build_channel method.

Implementations

impl<C> ChannelBuilder<C>[src]

pub fn new(client: C) -> Self[src]

Creates a builder with the client.

pub fn as_request(&self) -> &Request[src]

Gets the request object for reuse.

pub fn name(&mut self, name: impl Into<String>) -> &mut Self[src]

Sets the name of the channel.

pub fn description(&mut self, description: impl Into<String>) -> &mut Self[src]

Sets the description of the channel.

pub fn banner(&mut self, file: impl EntityRef<DriveFile>) -> &mut Self[src]

Sets the banner image of the channel.

impl<C: Client> ChannelBuilder<C>[src]

pub async fn create<'_>(&'_ self) -> Result<Channel, Error<C::Error>>[src]

Creates the channel.

Auto Trait Implementations

impl<C> RefUnwindSafe for ChannelBuilder<C> where
    C: RefUnwindSafe
[src]

impl<C> Send for ChannelBuilder<C> where
    C: Send
[src]

impl<C> Sync for ChannelBuilder<C> where
    C: Sync
[src]

impl<C> Unpin for ChannelBuilder<C> where
    C: Unpin
[src]

impl<C> UnwindSafe for ChannelBuilder<C> where
    C: UnwindSafe
[src]

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