[][src]Struct slack_morphism::api::SlackApiTeamProfileGetRequest

pub struct SlackApiTeamProfileGetRequest {
    pub visibility: Option<SlackTeamId>,
}

Fields

visibility: Option<SlackTeamId>

Implementations

impl SlackApiTeamProfileGetRequest[src]

pub fn new() -> Self[src]

pub fn visibility(&mut self, value: SlackTeamId) -> &mut Self[src]

pub fn reset_visibility(&mut self) -> &mut Self[src]

pub fn mopt_visibility(&mut self, value: Option<SlackTeamId>) -> &mut Self[src]

pub fn with_visibility(self, value: SlackTeamId) -> Self[src]

pub fn without_visibility(self) -> Self[src]

pub fn opt_visibility(self, value: Option<SlackTeamId>) -> Self[src]

Trait Implementations

impl Clone for SlackApiTeamProfileGetRequest[src]

impl Debug for SlackApiTeamProfileGetRequest[src]

impl<'de> Deserialize<'de> for SlackApiTeamProfileGetRequest[src]

impl From<SlackApiTeamProfileGetRequestInit> for SlackApiTeamProfileGetRequest[src]

impl PartialEq<SlackApiTeamProfileGetRequest> for SlackApiTeamProfileGetRequest[src]

impl Serialize for SlackApiTeamProfileGetRequest[src]

impl StructuralPartialEq for SlackApiTeamProfileGetRequest[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

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

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.