pub struct SlackUser {
Show 13 fields pub id: SlackUserId, pub team_id: SlackTeamId, pub name: Option<String>, pub locale: Option<SlackLocale>, pub profile: Option<SlackUserProfile>, pub flags: SlackUserFlags, pub tz: Option<String>, pub tz_label: Option<String>, pub tz_offset: Option<i32>, pub updated: Option<SlackDateTime>, pub deleted: Option<bool>, pub color: Option<SlackColor>, pub real_name: Option<String>,
}

Fields§

§id: SlackUserId§team_id: SlackTeamId§name: Option<String>§locale: Option<SlackLocale>§profile: Option<SlackUserProfile>§flags: SlackUserFlags§tz: Option<String>§tz_label: Option<String>§tz_offset: Option<i32>§updated: Option<SlackDateTime>§deleted: Option<bool>§color: Option<SlackColor>§real_name: Option<String>

Implementations§

source§

impl SlackUser

source

pub fn new(id: SlackUserId, team_id: SlackTeamId, flags: SlackUserFlags) -> Self

source

pub fn id(&mut self, value: SlackUserId) -> &mut Self

source

pub fn with_id(self, value: SlackUserId) -> Self

source

pub fn team_id(&mut self, value: SlackTeamId) -> &mut Self

source

pub fn with_team_id(self, value: SlackTeamId) -> Self

source

pub fn name(&mut self, value: String) -> &mut Self

source

pub fn reset_name(&mut self) -> &mut Self

source

pub fn mopt_name(&mut self, value: Option<String>) -> &mut Self

source

pub fn with_name(self, value: String) -> Self

source

pub fn without_name(self) -> Self

source

pub fn opt_name(self, value: Option<String>) -> Self

source

pub fn locale(&mut self, value: SlackLocale) -> &mut Self

source

pub fn reset_locale(&mut self) -> &mut Self

source

pub fn mopt_locale(&mut self, value: Option<SlackLocale>) -> &mut Self

source

pub fn with_locale(self, value: SlackLocale) -> Self

source

pub fn without_locale(self) -> Self

source

pub fn opt_locale(self, value: Option<SlackLocale>) -> Self

source

pub fn profile(&mut self, value: SlackUserProfile) -> &mut Self

source

pub fn reset_profile(&mut self) -> &mut Self

source

pub fn mopt_profile(&mut self, value: Option<SlackUserProfile>) -> &mut Self

source

pub fn with_profile(self, value: SlackUserProfile) -> Self

source

pub fn without_profile(self) -> Self

source

pub fn opt_profile(self, value: Option<SlackUserProfile>) -> Self

source

pub fn flags(&mut self, value: SlackUserFlags) -> &mut Self

source

pub fn with_flags(self, value: SlackUserFlags) -> Self

source

pub fn tz(&mut self, value: String) -> &mut Self

source

pub fn reset_tz(&mut self) -> &mut Self

source

pub fn mopt_tz(&mut self, value: Option<String>) -> &mut Self

source

pub fn with_tz(self, value: String) -> Self

source

pub fn without_tz(self) -> Self

source

pub fn opt_tz(self, value: Option<String>) -> Self

source

pub fn tz_label(&mut self, value: String) -> &mut Self

source

pub fn reset_tz_label(&mut self) -> &mut Self

source

pub fn mopt_tz_label(&mut self, value: Option<String>) -> &mut Self

source

pub fn with_tz_label(self, value: String) -> Self

source

pub fn without_tz_label(self) -> Self

source

pub fn opt_tz_label(self, value: Option<String>) -> Self

source

pub fn tz_offset(&mut self, value: i32) -> &mut Self

source

pub fn reset_tz_offset(&mut self) -> &mut Self

source

pub fn mopt_tz_offset(&mut self, value: Option<i32>) -> &mut Self

source

pub fn with_tz_offset(self, value: i32) -> Self

source

pub fn without_tz_offset(self) -> Self

source

pub fn opt_tz_offset(self, value: Option<i32>) -> Self

source

pub fn updated(&mut self, value: SlackDateTime) -> &mut Self

source

pub fn reset_updated(&mut self) -> &mut Self

source

pub fn mopt_updated(&mut self, value: Option<SlackDateTime>) -> &mut Self

source

pub fn with_updated(self, value: SlackDateTime) -> Self

source

pub fn without_updated(self) -> Self

source

pub fn opt_updated(self, value: Option<SlackDateTime>) -> Self

source

pub fn deleted(&mut self, value: bool) -> &mut Self

source

pub fn reset_deleted(&mut self) -> &mut Self

source

pub fn mopt_deleted(&mut self, value: Option<bool>) -> &mut Self

source

pub fn with_deleted(self, value: bool) -> Self

source

pub fn without_deleted(self) -> Self

source

pub fn opt_deleted(self, value: Option<bool>) -> Self

source

pub fn color(&mut self, value: SlackColor) -> &mut Self

source

pub fn reset_color(&mut self) -> &mut Self

source

pub fn mopt_color(&mut self, value: Option<SlackColor>) -> &mut Self

source

pub fn with_color(self, value: SlackColor) -> Self

source

pub fn without_color(self) -> Self

source

pub fn opt_color(self, value: Option<SlackColor>) -> Self

source

pub fn real_name(&mut self, value: String) -> &mut Self

source

pub fn reset_real_name(&mut self) -> &mut Self

source

pub fn mopt_real_name(&mut self, value: Option<String>) -> &mut Self

source

pub fn with_real_name(self, value: String) -> Self

source

pub fn without_real_name(self) -> Self

source

pub fn opt_real_name(self, value: Option<String>) -> Self

Trait Implementations§

source§

impl Clone for SlackUser

source§

fn clone(&self) -> SlackUser

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for SlackUser

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for SlackUser

source§

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<SlackUserInit> for SlackUser

source§

fn from(value: SlackUserInit) -> Self

Converts to this type from the input type.
source§

impl PartialEq<SlackUser> for SlackUser

source§

fn eq(&self, other: &SlackUser) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for SlackUser

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for SlackUser

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,