pub enum BatchCompletionWindow {
TwentyFourHours,
Other(String),
}Expand description
Batch completion window.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for BatchCompletionWindow
impl Clone for BatchCompletionWindow
Source§fn clone(&self) -> BatchCompletionWindow
fn clone(&self) -> BatchCompletionWindow
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 BatchCompletionWindow
impl Debug for BatchCompletionWindow
Source§impl Default for BatchCompletionWindow
impl Default for BatchCompletionWindow
impl Eq for BatchCompletionWindow
Source§impl From<&str> for BatchCompletionWindow
impl From<&str> for BatchCompletionWindow
Source§impl From<String> for BatchCompletionWindow
impl From<String> for BatchCompletionWindow
Source§impl Hash for BatchCompletionWindow
impl Hash for BatchCompletionWindow
Source§impl<'de> NsonDeserialize<'de> for BatchCompletionWindow
impl<'de> NsonDeserialize<'de> for BatchCompletionWindow
Source§fn nextdecode_into<D: FormatDecoder<'de>>(
decoder: &mut D,
out: &mut DecodeSlot<Self>,
) -> Result<(), D::Error>
fn nextdecode_into<D: FormatDecoder<'de>>( decoder: &mut D, out: &mut DecodeSlot<Self>, ) -> Result<(), D::Error>
Decode into
out. Read moreSource§fn expecting() -> &'static str
fn expecting() -> &'static str
Human-readable description of the value this type decodes from. Read more
Source§fn nextdecode<D>(
decoder: &mut D,
) -> Result<Self, <D as FormatDecoder<'de>>::Error>where
D: FormatDecoder<'de>,
fn nextdecode<D>(
decoder: &mut D,
) -> Result<Self, <D as FormatDecoder<'de>>::Error>where
D: FormatDecoder<'de>,
Decode and return a value.
Source§impl NsonSchema for BatchCompletionWindow
impl NsonSchema for BatchCompletionWindow
Source§const SCHEMA: TypeSchema = ::nextjson::TypeSchema::Str
const SCHEMA: TypeSchema = ::nextjson::TypeSchema::Str
The compile-time structural description.
Source§impl NsonSerialize for BatchCompletionWindow
impl NsonSerialize for BatchCompletionWindow
Source§fn nextencode<E: FormatEncoder>(&self, encoder: &mut E) -> Result<(), E::Error>
fn nextencode<E: FormatEncoder>(&self, encoder: &mut E) -> Result<(), E::Error>
Source§impl PartialEq for BatchCompletionWindow
impl PartialEq for BatchCompletionWindow
impl StructuralPartialEq for BatchCompletionWindow
Auto Trait Implementations§
impl Freeze for BatchCompletionWindow
impl RefUnwindSafe for BatchCompletionWindow
impl Send for BatchCompletionWindow
impl Sync for BatchCompletionWindow
impl Unpin for BatchCompletionWindow
impl UnsafeUnpin for BatchCompletionWindow
impl UnwindSafe for BatchCompletionWindow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.