pub struct SlackBasicTeamInfo {
pub id: SlackTeamId,
pub name: Option<String>,
pub domain: Option<String>,
}
Fields§
§id: SlackTeamId
§name: Option<String>
§domain: Option<String>
Implementations§
Source§impl SlackBasicTeamInfo
impl SlackBasicTeamInfo
pub fn new(id: SlackTeamId) -> Self
pub fn id(&mut self, value: SlackTeamId) -> &mut Self
pub fn with_id(self, value: SlackTeamId) -> Self
pub fn name(&mut self, value: String) -> &mut Self
pub fn reset_name(&mut self) -> &mut Self
pub fn mopt_name(&mut self, value: Option<String>) -> &mut Self
pub fn with_name(self, value: String) -> Self
pub fn without_name(self) -> Self
pub fn opt_name(self, value: Option<String>) -> Self
pub fn domain(&mut self, value: String) -> &mut Self
pub fn reset_domain(&mut self) -> &mut Self
pub fn mopt_domain(&mut self, value: Option<String>) -> &mut Self
pub fn with_domain(self, value: String) -> Self
pub fn without_domain(self) -> Self
pub fn opt_domain(self, value: Option<String>) -> Self
Trait Implementations§
Source§impl Clone for SlackBasicTeamInfo
impl Clone for SlackBasicTeamInfo
Source§fn clone(&self) -> SlackBasicTeamInfo
fn clone(&self) -> SlackBasicTeamInfo
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 Debug for SlackBasicTeamInfo
impl Debug for SlackBasicTeamInfo
Source§impl<'de> Deserialize<'de> for SlackBasicTeamInfo
impl<'de> Deserialize<'de> for SlackBasicTeamInfo
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<SlackBasicTeamInfoInit> for SlackBasicTeamInfo
impl From<SlackBasicTeamInfoInit> for SlackBasicTeamInfo
Source§fn from(value: SlackBasicTeamInfoInit) -> Self
fn from(value: SlackBasicTeamInfoInit) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SlackBasicTeamInfo
impl PartialEq for SlackBasicTeamInfo
Source§impl Serialize for SlackBasicTeamInfo
impl Serialize for SlackBasicTeamInfo
impl StructuralPartialEq for SlackBasicTeamInfo
Auto Trait Implementations§
impl Freeze for SlackBasicTeamInfo
impl RefUnwindSafe for SlackBasicTeamInfo
impl Send for SlackBasicTeamInfo
impl Sync for SlackBasicTeamInfo
impl Unpin for SlackBasicTeamInfo
impl UnwindSafe for SlackBasicTeamInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)