pub struct InstanceInfo {
pub name: String,
pub description: String,
pub version: String,
pub plugin_api_version: String,
pub rustc_channel: String,
pub rustc_version: String,
pub hostname: String,
pub port: i32,
pub secure: bool,
pub git_commit: String,
pub git_tag: String,
pub last_seen: String,
/* private fields */
}
Fields§
§name: String
§description: String
§version: String
§plugin_api_version: String
§rustc_channel: String
§rustc_version: String
§hostname: String
§port: i32
§secure: bool
§git_commit: String
§git_tag: String
§last_seen: String
Trait Implementations§
Source§impl Clone for InstanceInfo
impl Clone for InstanceInfo
Source§fn clone(&self) -> InstanceInfo
fn clone(&self) -> InstanceInfo
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 InstanceInfo
impl Debug for InstanceInfo
Source§impl From<InstanceInfo> for InstanceInfo
impl From<InstanceInfo> for InstanceInfo
Source§impl TableInlineFormatSetter for InstanceInfo
impl TableInlineFormatSetter for InstanceInfo
fn set_table_inline_format(&mut self, table_inline_format: TableInlineFormat)
Source§impl Tabled for InstanceInfo
impl Tabled for InstanceInfo
Auto Trait Implementations§
impl Freeze for InstanceInfo
impl RefUnwindSafe for InstanceInfo
impl Send for InstanceInfo
impl Sync for InstanceInfo
impl Unpin for InstanceInfo
impl UnwindSafe for InstanceInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more