[][src]Struct graph_rs_sdk::teams::PrimaryChannelRequest

pub struct PrimaryChannelRequest<'a, Client> { /* fields omitted */ }

Implementations

impl<'a, Client> PrimaryChannelRequest<'a, Client> where
    Client: RequestClient
[src]

pub fn primary_channel_messages(
    &self
) -> PrimaryChannelMessagesRequest<'a, Client>
[src]

pub fn primary_channel_tabs(&self) -> PrimaryChannelTabsRequest<'a, Client>[src]

pub fn get_members<S: AsRef<str>>(
    &'a self,
    id: S
) -> IntoResponse<'a, Value, Client>
[src]

pub fn update_members<S: AsRef<str>, B: Serialize>(
    &'a self,
    id: S,
    body: &B
) -> IntoResponse<'a, GraphResponse<Content>, Client>
[src]

pub fn get_files_folder(&'a self) -> IntoResponse<'a, Value, Client>[src]

pub fn update_files_folder<B: Serialize>(
    &'a self,
    body: &B
) -> IntoResponse<'a, GraphResponse<Content>, Client>
[src]

pub fn get_messages<S: AsRef<str>>(
    &'a self,
    id: S
) -> IntoResponse<'a, Value, Client>
[src]

pub fn update_messages<S: AsRef<str>, B: Serialize>(
    &'a self,
    id: S,
    body: &B
) -> IntoResponse<'a, GraphResponse<Content>, Client>
[src]

pub fn get_tabs<S: AsRef<str>>(
    &'a self,
    id: S
) -> IntoResponse<'a, Value, Client>
[src]

pub fn update_tabs<S: AsRef<str>, B: Serialize>(
    &'a self,
    id: S,
    body: &B
) -> IntoResponse<'a, GraphResponse<Content>, Client>
[src]

pub fn list_members(&'a self) -> IntoResponse<'a, Collection<Value>, Client>[src]

pub fn create_members<B: Serialize>(
    &'a self,
    body: &B
) -> IntoResponse<'a, Value, Client>
[src]

pub fn list_messages(&'a self) -> IntoResponse<'a, Collection<Value>, Client>[src]

pub fn create_messages<B: Serialize>(
    &'a self,
    body: &B
) -> IntoResponse<'a, Value, Client>
[src]

pub fn list_tabs(&'a self) -> IntoResponse<'a, Collection<Value>, Client>[src]

pub fn create_tabs<B: Serialize>(
    &'a self,
    body: &B
) -> IntoResponse<'a, Value, Client>
[src]

Auto Trait Implementations

impl<'a, Client> RefUnwindSafe for PrimaryChannelRequest<'a, Client> where
    Client: RefUnwindSafe
[src]

impl<'a, Client> Send for PrimaryChannelRequest<'a, Client> where
    Client: Sync
[src]

impl<'a, Client> Sync for PrimaryChannelRequest<'a, Client> where
    Client: Sync
[src]

impl<'a, Client> Unpin for PrimaryChannelRequest<'a, Client>[src]

impl<'a, Client> UnwindSafe for PrimaryChannelRequest<'a, Client> where
    Client: RefUnwindSafe
[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> 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.