pub struct ReleaseAgentResponse {
pub name: String,
pub released: bool,
pub deleted: bool,
pub reason: Option<String>,
}Fields§
§name: String§released: bool§deleted: bool§reason: Option<String>Trait Implementations§
Source§impl Clone for ReleaseAgentResponse
impl Clone for ReleaseAgentResponse
Source§fn clone(&self) -> ReleaseAgentResponse
fn clone(&self) -> ReleaseAgentResponse
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 ReleaseAgentResponse
impl Debug for ReleaseAgentResponse
Source§impl<'de> Deserialize<'de> for ReleaseAgentResponse
impl<'de> Deserialize<'de> for ReleaseAgentResponse
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 ReleaseAgentResponse
impl RefUnwindSafe for ReleaseAgentResponse
impl Send for ReleaseAgentResponse
impl Sync for ReleaseAgentResponse
impl Unpin for ReleaseAgentResponse
impl UnsafeUnpin for ReleaseAgentResponse
impl UnwindSafe for ReleaseAgentResponse
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