#[non_exhaustive]pub struct EnableProcessorRequest {
pub name: String,
/* private fields */
}Expand description
Request message for the EnableProcessor method.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The processor resource name to be enabled.
Implementations§
Trait Implementations§
Source§impl Clone for EnableProcessorRequest
impl Clone for EnableProcessorRequest
Source§fn clone(&self) -> EnableProcessorRequest
fn clone(&self) -> EnableProcessorRequest
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 EnableProcessorRequest
impl Debug for EnableProcessorRequest
Source§impl Default for EnableProcessorRequest
impl Default for EnableProcessorRequest
Source§fn default() -> EnableProcessorRequest
fn default() -> EnableProcessorRequest
Returns the “default value” for a type. Read more
Source§impl Message for EnableProcessorRequest
impl Message for EnableProcessorRequest
Source§impl PartialEq for EnableProcessorRequest
impl PartialEq for EnableProcessorRequest
impl StructuralPartialEq for EnableProcessorRequest
Auto Trait Implementations§
impl Freeze for EnableProcessorRequest
impl RefUnwindSafe for EnableProcessorRequest
impl Send for EnableProcessorRequest
impl Sync for EnableProcessorRequest
impl Unpin for EnableProcessorRequest
impl UnwindSafe for EnableProcessorRequest
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