pub struct LocalRuntimeEventSubject {
pub id: Option<String>,
pub kind: String,
pub name: Option<String>,
}Expand description
LocalRuntimeEventSubject
JSON schema
{
"type": "object",
"required": [
"kind"
],
"properties": {
"id": {
"type": [
"string",
"null"
]
},
"kind": {
"type": "string"
},
"name": {
"type": [
"string",
"null"
]
}
}
}Fields§
§id: Option<String>§kind: String§name: Option<String>Implementations§
Source§impl LocalRuntimeEventSubject
impl LocalRuntimeEventSubject
pub fn builder() -> LocalRuntimeEventSubject
Trait Implementations§
Source§impl Clone for LocalRuntimeEventSubject
impl Clone for LocalRuntimeEventSubject
Source§fn clone(&self) -> LocalRuntimeEventSubject
fn clone(&self) -> LocalRuntimeEventSubject
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 LocalRuntimeEventSubject
impl Debug for LocalRuntimeEventSubject
Source§impl<'de> Deserialize<'de> for LocalRuntimeEventSubject
impl<'de> Deserialize<'de> for LocalRuntimeEventSubject
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 From<&LocalRuntimeEventSubject> for LocalRuntimeEventSubject
impl From<&LocalRuntimeEventSubject> for LocalRuntimeEventSubject
Source§fn from(value: &LocalRuntimeEventSubject) -> Self
fn from(value: &LocalRuntimeEventSubject) -> Self
Converts to this type from the input type.
Source§impl From<LocalRuntimeEventSubject> for LocalRuntimeEventSubject
impl From<LocalRuntimeEventSubject> for LocalRuntimeEventSubject
Source§fn from(value: LocalRuntimeEventSubject) -> Self
fn from(value: LocalRuntimeEventSubject) -> Self
Converts to this type from the input type.
Source§impl Serialize for LocalRuntimeEventSubject
impl Serialize for LocalRuntimeEventSubject
Source§impl TryFrom<LocalRuntimeEventSubject> for LocalRuntimeEventSubject
impl TryFrom<LocalRuntimeEventSubject> for LocalRuntimeEventSubject
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: LocalRuntimeEventSubject) -> Result<Self, ConversionError>
fn try_from(value: LocalRuntimeEventSubject) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for LocalRuntimeEventSubject
impl RefUnwindSafe for LocalRuntimeEventSubject
impl Send for LocalRuntimeEventSubject
impl Sync for LocalRuntimeEventSubject
impl Unpin for LocalRuntimeEventSubject
impl UnsafeUnpin for LocalRuntimeEventSubject
impl UnwindSafe for LocalRuntimeEventSubject
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