pub struct ManifestModifyReport {
pub id: Option<String>,
pub errors: Option<Vec<String>>,
pub files: Option<Vec<String>>,
pub images: Option<Vec<String>>,
}
Available on crate feature
v5
only.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.
Trait Implementations§
Source§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
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