pub struct SlackApiUsersProfileGetRequest {
pub user: Option<SlackUserId>,
pub include_locale: Option<bool>,
}Fields
user: Option<SlackUserId>include_locale: Option<bool>Implementations
sourceimpl SlackApiUsersProfileGetRequest
impl SlackApiUsersProfileGetRequest
pub fn new() -> Self
pub fn user(&mut self, value: SlackUserId) -> &mut Self
pub fn reset_user(&mut self) -> &mut Self
pub fn mopt_user(&mut self, value: Option<SlackUserId>) -> &mut Self
pub fn with_user(self, value: SlackUserId) -> Self
pub fn without_user(self) -> Self
pub fn opt_user(self, value: Option<SlackUserId>) -> Self
pub fn include_locale(&mut self, value: bool) -> &mut Self
pub fn reset_include_locale(&mut self) -> &mut Self
pub fn mopt_include_locale(&mut self, value: Option<bool>) -> &mut Self
pub fn with_include_locale(self, value: bool) -> Self
pub fn without_include_locale(self) -> Self
pub fn opt_include_locale(self, value: Option<bool>) -> Self
Trait Implementations
sourceimpl Clone for SlackApiUsersProfileGetRequest
impl Clone for SlackApiUsersProfileGetRequest
sourcefn clone(&self) -> SlackApiUsersProfileGetRequest
fn clone(&self) -> SlackApiUsersProfileGetRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl<'de> Deserialize<'de> for SlackApiUsersProfileGetRequest
impl<'de> Deserialize<'de> for SlackApiUsersProfileGetRequest
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<SlackApiUsersProfileGetRequestInit> for SlackApiUsersProfileGetRequest
impl From<SlackApiUsersProfileGetRequestInit> for SlackApiUsersProfileGetRequest
sourcefn from(value: SlackApiUsersProfileGetRequestInit) -> Self
fn from(value: SlackApiUsersProfileGetRequestInit) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<SlackApiUsersProfileGetRequest> for SlackApiUsersProfileGetRequest
impl PartialEq<SlackApiUsersProfileGetRequest> for SlackApiUsersProfileGetRequest
sourcefn eq(&self, other: &SlackApiUsersProfileGetRequest) -> bool
fn eq(&self, other: &SlackApiUsersProfileGetRequest) -> bool
impl StructuralPartialEq for SlackApiUsersProfileGetRequest
Auto Trait Implementations
impl RefUnwindSafe for SlackApiUsersProfileGetRequest
impl Send for SlackApiUsersProfileGetRequest
impl Sync for SlackApiUsersProfileGetRequest
impl Unpin for SlackApiUsersProfileGetRequest
impl UnwindSafe for SlackApiUsersProfileGetRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more