pub struct RuntimeRegistrationOwner {
pub kind: RuntimeRegistrationOwnerKind,
pub plugin_kind: Option<String>,
pub component_ordinal: Option<u32>,
}Expand description
Discovery metadata describing the owner of a runtime registration.
Fields§
§kind: RuntimeRegistrationOwnerKindOwner category.
plugin_kind: Option<String>Plugin kind for plugin-owned registrations.
component_ordinal: Option<u32>One-based ordinal for a Relay-created plugin component, when applicable.
Trait Implementations§
Source§impl Clone for RuntimeRegistrationOwner
impl Clone for RuntimeRegistrationOwner
Source§fn clone(&self) -> RuntimeRegistrationOwner
fn clone(&self) -> RuntimeRegistrationOwner
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 RuntimeRegistrationOwner
impl Debug for RuntimeRegistrationOwner
Source§impl<'de> Deserialize<'de> for RuntimeRegistrationOwner
impl<'de> Deserialize<'de> for RuntimeRegistrationOwner
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<RuntimeRegistrationOwner, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<RuntimeRegistrationOwner, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for RuntimeRegistrationOwner
Source§impl PartialEq for RuntimeRegistrationOwner
impl PartialEq for RuntimeRegistrationOwner
Source§impl Serialize for RuntimeRegistrationOwner
impl Serialize for RuntimeRegistrationOwner
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for RuntimeRegistrationOwner
Auto Trait Implementations§
impl Freeze for RuntimeRegistrationOwner
impl RefUnwindSafe for RuntimeRegistrationOwner
impl Send for RuntimeRegistrationOwner
impl Sync for RuntimeRegistrationOwner
impl Unpin for RuntimeRegistrationOwner
impl UnsafeUnpin for RuntimeRegistrationOwner
impl UnwindSafe for RuntimeRegistrationOwner
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