pub struct ManifestModifyReport {
pub id: Option<String>,
pub errors: Option<Vec<String>>,
pub files: Option<Vec<String>>,
pub images: Option<Vec<String>>,
}
Fields§
§id: Option<String>
Manifest List ID
errors: Option<Vec<String>>
Errors associated with operation
files: Option<Vec<String>>
Files added to manifest list, otherwise not provided.
images: Option<Vec<String>>
Images added to or removed from manifest list, otherwise not provided.
Implementations§
Source§impl ManifestModifyReport
impl ManifestModifyReport
pub fn new() -> ManifestModifyReport
Trait Implementations§
Source§impl Clone for ManifestModifyReport
impl Clone for ManifestModifyReport
Source§fn clone(&self) -> ManifestModifyReport
fn clone(&self) -> ManifestModifyReport
Returns a duplicate of the value. Read more
1.0.0 · 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 ManifestModifyReport
impl Debug for ManifestModifyReport
Source§impl Default for ManifestModifyReport
impl Default for ManifestModifyReport
Source§fn default() -> ManifestModifyReport
fn default() -> ManifestModifyReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ManifestModifyReport
impl<'de> Deserialize<'de> for ManifestModifyReport
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 ManifestModifyReport
impl PartialEq for ManifestModifyReport
Source§impl Serialize for ManifestModifyReport
impl Serialize for ManifestModifyReport
impl StructuralPartialEq for ManifestModifyReport
Auto Trait Implementations§
impl Freeze for ManifestModifyReport
impl RefUnwindSafe for ManifestModifyReport
impl Send for ManifestModifyReport
impl Sync for ManifestModifyReport
impl Unpin for ManifestModifyReport
impl UnwindSafe for ManifestModifyReport
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