pub struct UnstablePollStartContentBlock {
pub question: UnstablePollQuestion,
pub kind: PollKind,
pub max_selections: UInt,
pub answers: UnstablePollAnswers,
}
Expand description
An unstable block for poll start content.
Fields§
§question: UnstablePollQuestion
The question of the poll.
kind: PollKind
The kind of the poll.
max_selections: UInt
The maximum number of responses a user is able to select.
Must be greater or equal to 1
.
Defaults to 1
.
answers: UnstablePollAnswers
The possible answers to the poll.
Implementations§
source§impl UnstablePollStartContentBlock
impl UnstablePollStartContentBlock
sourcepub fn new(question: impl Into<String>, answers: UnstablePollAnswers) -> Self
pub fn new(question: impl Into<String>, answers: UnstablePollAnswers) -> Self
Creates a new PollStartContent
with the given question and answers.
Trait Implementations§
source§impl Clone for UnstablePollStartContentBlock
impl Clone for UnstablePollStartContentBlock
source§fn clone(&self) -> UnstablePollStartContentBlock
fn clone(&self) -> UnstablePollStartContentBlock
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 UnstablePollStartContentBlock
impl<'de> Deserialize<'de> for UnstablePollStartContentBlock
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 UnstablePollStartContentBlock
impl RefUnwindSafe for UnstablePollStartContentBlock
impl Send for UnstablePollStartContentBlock
impl Sync for UnstablePollStartContentBlock
impl Unpin for UnstablePollStartContentBlock
impl UnwindSafe for UnstablePollStartContentBlock
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
)