#[non_exhaustive]pub struct CustomMetadata {
pub values: HashMap<String, String>,
/* private fields */
}
Expand description
CustomMetadata contains information from a user-defined operation.
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.values: HashMap<String, String>
Output only. Key-value pairs provided by the user-defined operation.
Implementations§
Trait Implementations§
Source§impl Clone for CustomMetadata
impl Clone for CustomMetadata
Source§fn clone(&self) -> CustomMetadata
fn clone(&self) -> CustomMetadata
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 CustomMetadata
impl Debug for CustomMetadata
Source§impl Default for CustomMetadata
impl Default for CustomMetadata
Source§fn default() -> CustomMetadata
fn default() -> CustomMetadata
Returns the “default value” for a type. Read more
Source§impl Message for CustomMetadata
impl Message for CustomMetadata
Source§impl PartialEq for CustomMetadata
impl PartialEq for CustomMetadata
impl StructuralPartialEq for CustomMetadata
Auto Trait Implementations§
impl Freeze for CustomMetadata
impl RefUnwindSafe for CustomMetadata
impl Send for CustomMetadata
impl Sync for CustomMetadata
impl Unpin for CustomMetadata
impl UnwindSafe for CustomMetadata
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