pub struct DeleteRepositoryOutput {
pub repository_id: Option<String>,
}Expand description
Represents the output of a delete repository operation.
Fields§
§repository_id: Option<String>The ID of the repository that was deleted.
Trait Implementations§
Source§impl Clone for DeleteRepositoryOutput
impl Clone for DeleteRepositoryOutput
Source§fn clone(&self) -> DeleteRepositoryOutput
fn clone(&self) -> DeleteRepositoryOutput
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 DeleteRepositoryOutput
impl Debug for DeleteRepositoryOutput
Source§impl Default for DeleteRepositoryOutput
impl Default for DeleteRepositoryOutput
Source§fn default() -> DeleteRepositoryOutput
fn default() -> DeleteRepositoryOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteRepositoryOutput
impl<'de> Deserialize<'de> for DeleteRepositoryOutput
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 DeleteRepositoryOutput
impl PartialEq for DeleteRepositoryOutput
impl StructuralPartialEq for DeleteRepositoryOutput
Auto Trait Implementations§
impl Freeze for DeleteRepositoryOutput
impl RefUnwindSafe for DeleteRepositoryOutput
impl Send for DeleteRepositoryOutput
impl Sync for DeleteRepositoryOutput
impl Unpin for DeleteRepositoryOutput
impl UnwindSafe for DeleteRepositoryOutput
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