pub struct MBeanInfo {
pub attributes: Vec<MBeanAttribute>,
pub class_name: String,
pub description: String,
}Expand description
Metadata about an MBean.
Rust version of javax.management.MBeanInfo
Fields§
§attributes: Vec<MBeanAttribute>§class_name: String§description: StringImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MBeanInfo
impl<'de> Deserialize<'de> for MBeanInfo
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 Ord for MBeanInfo
impl Ord for MBeanInfo
Source§impl PartialOrd for MBeanInfo
impl PartialOrd for MBeanInfo
impl Eq for MBeanInfo
impl StructuralPartialEq for MBeanInfo
Auto Trait Implementations§
impl Freeze for MBeanInfo
impl RefUnwindSafe for MBeanInfo
impl Send for MBeanInfo
impl Sync for MBeanInfo
impl Unpin for MBeanInfo
impl UnwindSafe for MBeanInfo
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