pub struct DescribeCommandRequest(pub String);Expand description
Request to describe a particular command
Tuple Fields§
§0: StringTrait Implementations§
Source§impl Clone for DescribeCommandRequest
impl Clone for DescribeCommandRequest
Source§fn clone(&self) -> DescribeCommandRequest
fn clone(&self) -> DescribeCommandRequest
Returns a duplicate of the value. Read more
1.0.0 · 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 DescribeCommandRequest
impl Debug for DescribeCommandRequest
Source§impl<'de> Deserialize<'de> for DescribeCommandRequest
impl<'de> Deserialize<'de> for DescribeCommandRequest
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 SceneMessage for DescribeCommandRequest
impl SceneMessage for DescribeCommandRequest
Source§fn default_target() -> StreamTarget
fn default_target() -> StreamTarget
The default target for this message type Read more
Source§fn initialise(init_context: &impl SceneInitialisationContext)
fn initialise(init_context: &impl SceneInitialisationContext)
Sets up this message type in a scene. This can be an opportunity to set up default filters and connections for a
particular message type. This is called the first time that a message is referenced in a scene.
Source§fn allow_thread_stealing_by_default() -> bool
fn allow_thread_stealing_by_default() -> bool
True if input streams for this message type should allow thread stealing by default Read more
Source§fn serializable() -> bool
fn serializable() -> bool
True if this message supports serialization Read more
Source§fn message_type_name() -> String
fn message_type_name() -> String
A string that identifies this message type uniquely when serializing Read more
Auto Trait Implementations§
impl Freeze for DescribeCommandRequest
impl RefUnwindSafe for DescribeCommandRequest
impl Send for DescribeCommandRequest
impl Sync for DescribeCommandRequest
impl Unpin for DescribeCommandRequest
impl UnwindSafe for DescribeCommandRequest
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