pub struct SlackApiUsersProfileGetRequest {
pub user: Option<SlackUserId>,
pub include_locale: Option<bool>,
}
Fields§
§user: Option<SlackUserId>
§include_locale: Option<bool>
Implementations§
source§impl 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§
source§impl Clone for SlackApiUsersProfileGetRequest
impl Clone for SlackApiUsersProfileGetRequest
source§fn clone(&self) -> SlackApiUsersProfileGetRequest
fn clone(&self) -> SlackApiUsersProfileGetRequest
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<'de> Deserialize<'de> for SlackApiUsersProfileGetRequest
impl<'de> Deserialize<'de> for SlackApiUsersProfileGetRequest
source§fn 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
source§impl From<SlackApiUsersProfileGetRequestInit> for SlackApiUsersProfileGetRequest
impl From<SlackApiUsersProfileGetRequestInit> for SlackApiUsersProfileGetRequest
source§fn from(value: SlackApiUsersProfileGetRequestInit) -> Self
fn from(value: SlackApiUsersProfileGetRequestInit) -> Self
Converts to this type from the input type.
source§impl PartialEq for SlackApiUsersProfileGetRequest
impl PartialEq for SlackApiUsersProfileGetRequest
source§fn eq(&self, other: &SlackApiUsersProfileGetRequest) -> bool
fn eq(&self, other: &SlackApiUsersProfileGetRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more