#[non_exhaustive]pub struct StageInstance {
pub id: StageInstanceId,
pub guild_id: GuildId,
pub channel_id: ChannelId,
pub topic: String,
pub privacy_level: StageInstancePrivacyLevel,
pub discoverable_disabled: bool,
pub guild_scheduled_event_id: Option<ScheduledEventId>,
}
Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: StageInstanceId
The Id of the stage instance.
guild_id: GuildId
The guild Id of the associated stage channel.
channel_id: ChannelId
The Id of the associated stage channel.
topic: String
The topic of the stage instance.
privacy_level: StageInstancePrivacyLevel
The privacy level of the Stage instance.
discoverable_disabled: bool
Whether or not Stage Discovery is disabled (deprecated).
guild_scheduled_event_id: Option<ScheduledEventId>
The id of the scheduled event for this Stage instance.
Trait Implementations§
Source§impl Clone for StageInstance
impl Clone for StageInstance
Source§fn clone(&self) -> StageInstance
fn clone(&self) -> StageInstance
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 StageInstance
impl Debug for StageInstance
Source§impl<'de> Deserialize<'de> for StageInstance
impl<'de> Deserialize<'de> for StageInstance
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
Auto Trait Implementations§
impl Freeze for StageInstance
impl RefUnwindSafe for StageInstance
impl Send for StageInstance
impl Sync for StageInstance
impl Unpin for StageInstance
impl UnwindSafe for StageInstance
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
§impl<T> CloneDebuggableStorage for Twhere
T: DebuggableStorage + Clone,
impl<T> CloneDebuggableStorage for Twhere
T: DebuggableStorage + Clone,
fn clone_storage(&self) -> Box<dyn CloneDebuggableStorage>
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
)