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