pub struct PollCard {
pub title: String,
pub options: Vec<PollOption>,
pub header_label: String,
pub votes_label: String,
}Fields§
§title: String§options: Vec<PollOption>§header_label: String§votes_label: StringImplementations§
Auto Trait Implementations§
impl Freeze for PollCard
impl RefUnwindSafe for PollCard
impl Send for PollCard
impl Sync for PollCard
impl Unpin for PollCard
impl UnsafeUnpin for PollCard
impl UnwindSafe for PollCard
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