pub struct ChatReviewSessionResults {
pub winning_vote_code: i32,
pub own_vote_code: i32,
pub final_status: Vec<i32>,
}
Fields§
§winning_vote_code: i32
§own_vote_code: i32
§final_status: Vec<i32>
Trait Implementations§
source§impl BaseParser for ChatReviewSessionResults
impl BaseParser for ChatReviewSessionResults
fn parse(packet: &mut HPacket) -> Self
fn append_to_packet(&self, packet: &mut HPacket)
fn get_direction() -> HDirection
fn get_packet_name() -> String
source§impl Clone for ChatReviewSessionResults
impl Clone for ChatReviewSessionResults
source§fn clone(&self) -> ChatReviewSessionResults
fn clone(&self) -> ChatReviewSessionResults
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 ChatReviewSessionResults
impl Debug for ChatReviewSessionResults
source§impl Default for ChatReviewSessionResults
impl Default for ChatReviewSessionResults
source§fn default() -> ChatReviewSessionResults
fn default() -> ChatReviewSessionResults
Returns the “default value” for a type. Read more
source§impl PartialEq<ChatReviewSessionResults> for ChatReviewSessionResults
impl PartialEq<ChatReviewSessionResults> for ChatReviewSessionResults
source§fn eq(&self, other: &ChatReviewSessionResults) -> bool
fn eq(&self, other: &ChatReviewSessionResults) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ChatReviewSessionResults
Auto Trait Implementations§
impl RefUnwindSafe for ChatReviewSessionResults
impl Send for ChatReviewSessionResults
impl Sync for ChatReviewSessionResults
impl Unpin for ChatReviewSessionResults
impl UnwindSafe for ChatReviewSessionResults
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