pub struct ForumThreads {
pub group_id: LegacyId,
pub start_index: i32,
pub threads: Vec<ThreadData>,
}
Fields§
§group_id: LegacyId
§start_index: i32
§threads: Vec<ThreadData>
Trait Implementations§
Source§impl BaseParser for ForumThreads
impl BaseParser for ForumThreads
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 ForumThreads
impl Clone for ForumThreads
Source§fn clone(&self) -> ForumThreads
fn clone(&self) -> ForumThreads
Returns a duplicate 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 ForumThreads
impl Debug for ForumThreads
Source§impl Default for ForumThreads
impl Default for ForumThreads
Source§fn default() -> ForumThreads
fn default() -> ForumThreads
Returns the “default value” for a type. Read more
Source§impl PacketVariable for ForumThreads
impl PacketVariable for ForumThreads
Source§impl PartialEq for ForumThreads
impl PartialEq for ForumThreads
impl StructuralPartialEq for ForumThreads
Auto Trait Implementations§
impl Freeze for ForumThreads
impl RefUnwindSafe for ForumThreads
impl Send for ForumThreads
impl Sync for ForumThreads
impl Unpin for ForumThreads
impl UnwindSafe for ForumThreads
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