pub struct BatchImportResult {
pub error_code: Option<BatchImportErrorCode>,
pub error_message: Option<String>,
pub imported_api_key: Option<Box<ImportedApiKey>>,
pub index: Option<i32>,
}Expand description
BatchImportResult : BatchImportResult contains the result for one key in a batch import request.
Fields§
§error_code: Option<BatchImportErrorCode>§error_message: Option<String>§imported_api_key: Option<Box<ImportedApiKey>>§index: Option<i32>Implementations§
Source§impl BatchImportResult
impl BatchImportResult
Sourcepub fn new() -> BatchImportResult
pub fn new() -> BatchImportResult
BatchImportResult contains the result for one key in a batch import request.
Trait Implementations§
Source§impl Clone for BatchImportResult
impl Clone for BatchImportResult
Source§fn clone(&self) -> BatchImportResult
fn clone(&self) -> BatchImportResult
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 BatchImportResult
impl Debug for BatchImportResult
Source§impl Default for BatchImportResult
impl Default for BatchImportResult
Source§fn default() -> BatchImportResult
fn default() -> BatchImportResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchImportResult
impl<'de> Deserialize<'de> for BatchImportResult
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 BatchImportResult
impl PartialEq for BatchImportResult
Source§fn eq(&self, other: &BatchImportResult) -> bool
fn eq(&self, other: &BatchImportResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BatchImportResult
impl Serialize for BatchImportResult
impl StructuralPartialEq for BatchImportResult
Auto Trait Implementations§
impl Freeze for BatchImportResult
impl RefUnwindSafe for BatchImportResult
impl Send for BatchImportResult
impl Sync for BatchImportResult
impl Unpin for BatchImportResult
impl UnsafeUnpin for BatchImportResult
impl UnwindSafe for BatchImportResult
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