pub struct CreateReportResult {
pub report_id: String,
}Fields
report_id: StringThe identifier for the report. This identifier is unique only in combination with a seller ID.
Implementations
sourceimpl CreateReportResult
impl CreateReportResult
pub fn new(report_id: String) -> CreateReportResult
Trait Implementations
sourceimpl Clone for CreateReportResult
impl Clone for CreateReportResult
sourcefn clone(&self) -> CreateReportResult
fn clone(&self) -> CreateReportResult
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateReportResult
impl Debug for CreateReportResult
sourceimpl Default for CreateReportResult
impl Default for CreateReportResult
sourcefn default() -> CreateReportResult
fn default() -> CreateReportResult
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CreateReportResult
impl<'de> Deserialize<'de> for CreateReportResult
sourcefn 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
sourceimpl PartialEq<CreateReportResult> for CreateReportResult
impl PartialEq<CreateReportResult> for CreateReportResult
sourcefn eq(&self, other: &CreateReportResult) -> bool
fn eq(&self, other: &CreateReportResult) -> bool
sourceimpl Serialize for CreateReportResult
impl Serialize for CreateReportResult
impl StructuralPartialEq for CreateReportResult
Auto Trait Implementations
impl RefUnwindSafe for CreateReportResult
impl Send for CreateReportResult
impl Sync for CreateReportResult
impl Unpin for CreateReportResult
impl UnwindSafe for CreateReportResult
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more