pub struct MetadataResponse {
pub protocol_version: u32,
pub workflow_name: String,
pub description: Option<String>,
pub runkernel_version: String,
pub supports: ProtocolSupport,
}Fields§
§protocol_version: u32§workflow_name: String§description: Option<String>§runkernel_version: String§supports: ProtocolSupportTrait Implementations§
Source§impl Clone for MetadataResponse
impl Clone for MetadataResponse
Source§fn clone(&self) -> MetadataResponse
fn clone(&self) -> MetadataResponse
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 MetadataResponse
impl Debug for MetadataResponse
Source§impl<'de> Deserialize<'de> for MetadataResponse
impl<'de> Deserialize<'de> for MetadataResponse
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
impl Eq for MetadataResponse
Source§impl PartialEq for MetadataResponse
impl PartialEq for MetadataResponse
Source§impl Serialize for MetadataResponse
impl Serialize for MetadataResponse
impl StructuralPartialEq for MetadataResponse
Auto Trait Implementations§
impl Freeze for MetadataResponse
impl RefUnwindSafe for MetadataResponse
impl Send for MetadataResponse
impl Sync for MetadataResponse
impl Unpin for MetadataResponse
impl UnsafeUnpin for MetadataResponse
impl UnwindSafe for MetadataResponse
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