pub struct PollVote {
pub id: usize,
pub owner: usize,
pub created: usize,
pub poll_id: usize,
pub vote: PollOption,
}Fields§
§id: usize§owner: usize§created: usize§poll_id: usize§vote: PollOptionImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PollVote
impl<'de> Deserialize<'de> for PollVote
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 PollVote
impl RefUnwindSafe for PollVote
impl Send for PollVote
impl Sync for PollVote
impl Unpin for PollVote
impl UnwindSafe for PollVote
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