pub struct VoteStartData {
pub team: Option<u64>,
pub entity_idx: Option<u64>,
pub vote_type: Option<u64>,
pub display_string: Option<String>,
pub details_string: Option<String>,
pub other_team_string: Option<String>,
}
Fields§
§team: Option<u64>
§entity_idx: Option<u64>
§vote_type: Option<u64>
§display_string: Option<String>
§details_string: Option<String>
§other_team_string: Option<String>
Implementations§
Source§impl VoteStartData
impl VoteStartData
pub fn to_vec(&self) -> Vec<(&'static str, ProtobufValue)>
Trait Implementations§
Source§impl Clone for VoteStartData
impl Clone for VoteStartData
Source§fn clone(&self) -> VoteStartData
fn clone(&self) -> VoteStartData
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for VoteStartData
impl RefUnwindSafe for VoteStartData
impl Send for VoteStartData
impl Sync for VoteStartData
impl Unpin for VoteStartData
impl UnwindSafe for VoteStartData
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