pub struct PluginStats {
pub description: String,
pub licensed: Option<bool>,
pub opensearch_version: String,
pub name: String,
pub version: String,
pub classname: String,
pub extended_plugins: Vec<String>,
pub has_native_controller: bool,
pub java_version: String,
}Fields§
§description: String§licensed: Option<bool>§opensearch_version: String§name: String§version: String§classname: String§extended_plugins: Vec<String>§has_native_controller: bool§java_version: StringImplementations§
Trait Implementations§
Source§impl Clone for PluginStats
impl Clone for PluginStats
Source§fn clone(&self) -> PluginStats
fn clone(&self) -> PluginStats
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 PluginStats
impl Debug for PluginStats
Source§impl Default for PluginStats
impl Default for PluginStats
Source§fn default() -> PluginStats
fn default() -> PluginStats
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PluginStats
impl<'de> Deserialize<'de> for PluginStats
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
Source§impl PartialEq for PluginStats
impl PartialEq for PluginStats
Source§fn eq(&self, other: &PluginStats) -> bool
fn eq(&self, other: &PluginStats) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PluginStats
impl Serialize for PluginStats
impl StructuralPartialEq for PluginStats
Auto Trait Implementations§
impl Freeze for PluginStats
impl RefUnwindSafe for PluginStats
impl Send for PluginStats
impl Sync for PluginStats
impl Unpin for PluginStats
impl UnsafeUnpin for PluginStats
impl UnwindSafe for PluginStats
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