pub struct ForumsList {
pub list_code: i32,
pub total_amount: i32,
pub start_index: i32,
pub forums: Vec<BaseForumData>,
}
Fields§
§list_code: i32
§total_amount: i32
§start_index: i32
§forums: Vec<BaseForumData>
Trait Implementations§
source§impl BaseParser for ForumsList
impl BaseParser for ForumsList
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 ForumsList
impl Clone for ForumsList
source§fn clone(&self) -> ForumsList
fn clone(&self) -> ForumsList
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 ForumsList
impl Debug for ForumsList
source§impl Default for ForumsList
impl Default for ForumsList
source§fn default() -> ForumsList
fn default() -> ForumsList
Returns the “default value” for a type. Read more
source§impl PacketVariable for ForumsList
impl PacketVariable for ForumsList
source§impl PartialEq<ForumsList> for ForumsList
impl PartialEq<ForumsList> for ForumsList
source§fn eq(&self, other: &ForumsList) -> bool
fn eq(&self, other: &ForumsList) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ForumsList
Auto Trait Implementations§
impl RefUnwindSafe for ForumsList
impl Send for ForumsList
impl Sync for ForumsList
impl Unpin for ForumsList
impl UnwindSafe for ForumsList
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