pub struct PrivateServersResponse {
pub servers: Vec<PrivateServer>,
pub join_restricted: bool,
pub next_cursor: Option<String>,
pub previous_cursor: Option<String>,
}Fields§
§servers: Vec<PrivateServer>§join_restricted: bool§next_cursor: Option<String>§previous_cursor: Option<String>Trait Implementations§
Source§impl Clone for PrivateServersResponse
impl Clone for PrivateServersResponse
Source§fn clone(&self) -> PrivateServersResponse
fn clone(&self) -> PrivateServersResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PrivateServersResponse
impl Debug for PrivateServersResponse
Source§impl<'de> Deserialize<'de> for PrivateServersResponse
impl<'de> Deserialize<'de> for PrivateServersResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PrivateServersResponse
Source§impl PartialEq for PrivateServersResponse
impl PartialEq for PrivateServersResponse
Source§impl Serialize for PrivateServersResponse
impl Serialize for PrivateServersResponse
impl StructuralPartialEq for PrivateServersResponse
Auto Trait Implementations§
impl Freeze for PrivateServersResponse
impl RefUnwindSafe for PrivateServersResponse
impl Send for PrivateServersResponse
impl Sync for PrivateServersResponse
impl Unpin for PrivateServersResponse
impl UnsafeUnpin for PrivateServersResponse
impl UnwindSafe for PrivateServersResponse
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