pub struct RunMetamorphOptions {
pub build: Option<String>,
pub content_type: Option<String>,
}Expand description
Options for transforming a run into another Actor’s run (metamorph).
Fields§
§build: Option<String>Build tag/number of the target Actor to use (defaults to the target’s default build).
content_type: Option<String>Content type of the input body. Defaults to application/json when unset.
Trait Implementations§
Source§impl Clone for RunMetamorphOptions
impl Clone for RunMetamorphOptions
Source§fn clone(&self) -> RunMetamorphOptions
fn clone(&self) -> RunMetamorphOptions
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 RunMetamorphOptions
impl Debug for RunMetamorphOptions
Source§impl Default for RunMetamorphOptions
impl Default for RunMetamorphOptions
Source§fn default() -> RunMetamorphOptions
fn default() -> RunMetamorphOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RunMetamorphOptions
impl RefUnwindSafe for RunMetamorphOptions
impl Send for RunMetamorphOptions
impl Sync for RunMetamorphOptions
impl Unpin for RunMetamorphOptions
impl UnsafeUnpin for RunMetamorphOptions
impl UnwindSafe for RunMetamorphOptions
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