pub struct ServerSpawnFailure {
pub language_id: String,
pub command: String,
pub message: String,
}Expand description
Details of a single server spawn failure.
Fields§
§language_id: StringLanguage ID of the failed server.
command: StringCommand that was attempted.
message: StringError message describing the failure.
Trait Implementations§
Source§impl Clone for ServerSpawnFailure
impl Clone for ServerSpawnFailure
Source§fn clone(&self) -> ServerSpawnFailure
fn clone(&self) -> ServerSpawnFailure
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 ServerSpawnFailure
impl Debug for ServerSpawnFailure
Auto Trait Implementations§
impl Freeze for ServerSpawnFailure
impl RefUnwindSafe for ServerSpawnFailure
impl Send for ServerSpawnFailure
impl Sync for ServerSpawnFailure
impl Unpin for ServerSpawnFailure
impl UnwindSafe for ServerSpawnFailure
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