pub struct SearchResultList {
pub search_code: String,
pub text: String,
pub action_allowed: i32,
pub force_closed: bool,
pub view_mode: i32,
pub guest_rooms: Vec<GuestRoomData>,
}
Fields§
§search_code: String
§text: String
§action_allowed: i32
§force_closed: bool
§view_mode: i32
§guest_rooms: Vec<GuestRoomData>
Trait Implementations§
Source§impl Clone for SearchResultList
impl Clone for SearchResultList
Source§fn clone(&self) -> SearchResultList
fn clone(&self) -> SearchResultList
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 SearchResultList
impl Debug for SearchResultList
Source§impl Default for SearchResultList
impl Default for SearchResultList
Source§fn default() -> SearchResultList
fn default() -> SearchResultList
Returns the “default value” for a type. Read more
Source§impl PacketVariable for SearchResultList
impl PacketVariable for SearchResultList
Source§impl PartialEq for SearchResultList
impl PartialEq for SearchResultList
impl StructuralPartialEq for SearchResultList
Auto Trait Implementations§
impl Freeze for SearchResultList
impl RefUnwindSafe for SearchResultList
impl Send for SearchResultList
impl Sync for SearchResultList
impl Unpin for SearchResultList
impl UnwindSafe for SearchResultList
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