pub struct RestoreApplyCommandOutputPair {
pub stdout: RestoreApplyCommandOutput,
pub stderr: RestoreApplyCommandOutput,
}Expand description
RestoreApplyCommandOutputPair
Fields§
§stdout: RestoreApplyCommandOutput§stderr: RestoreApplyCommandOutputImplementations§
Source§impl RestoreApplyCommandOutputPair
impl RestoreApplyCommandOutputPair
Sourcepub fn from_bytes(stdout: &[u8], stderr: &[u8], limit: usize) -> Self
pub fn from_bytes(stdout: &[u8], stderr: &[u8], limit: usize) -> Self
Build bounded stdout/stderr command output payloads.
Trait Implementations§
Source§impl Clone for RestoreApplyCommandOutputPair
impl Clone for RestoreApplyCommandOutputPair
Source§fn clone(&self) -> RestoreApplyCommandOutputPair
fn clone(&self) -> RestoreApplyCommandOutputPair
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<'de> Deserialize<'de> for RestoreApplyCommandOutputPair
impl<'de> Deserialize<'de> for RestoreApplyCommandOutputPair
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 PartialEq for RestoreApplyCommandOutputPair
impl PartialEq for RestoreApplyCommandOutputPair
Source§fn eq(&self, other: &RestoreApplyCommandOutputPair) -> bool
fn eq(&self, other: &RestoreApplyCommandOutputPair) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RestoreApplyCommandOutputPair
impl StructuralPartialEq for RestoreApplyCommandOutputPair
Auto Trait Implementations§
impl Freeze for RestoreApplyCommandOutputPair
impl RefUnwindSafe for RestoreApplyCommandOutputPair
impl Send for RestoreApplyCommandOutputPair
impl Sync for RestoreApplyCommandOutputPair
impl Unpin for RestoreApplyCommandOutputPair
impl UnsafeUnpin for RestoreApplyCommandOutputPair
impl UnwindSafe for RestoreApplyCommandOutputPair
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