pub struct RoutePlannerStatus {
pub class: Option<RoutePlannerType>,
pub details: Option<Details>,
}Expand description
Response sent by Lavalink server about Route Planner status.
Fields§
§class: Option<RoutePlannerType>The name of the RoutePlanner implementation being used by this server.
details: Option<Details>The status details of the RoutePlanner.
Trait Implementations§
Source§impl Clone for RoutePlannerStatus
impl Clone for RoutePlannerStatus
Source§fn clone(&self) -> RoutePlannerStatus
fn clone(&self) -> RoutePlannerStatus
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<'de> Deserialize<'de> for RoutePlannerStatus
impl<'de> Deserialize<'de> for RoutePlannerStatus
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
Auto Trait Implementations§
impl Freeze for RoutePlannerStatus
impl RefUnwindSafe for RoutePlannerStatus
impl Send for RoutePlannerStatus
impl Sync for RoutePlannerStatus
impl Unpin for RoutePlannerStatus
impl UnwindSafe for RoutePlannerStatus
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