pub struct ReleaseEntry {
pub id: String,
pub version: String,
pub status: ReleaseStatus,
pub created_at: String,
}Fields§
§id: String§version: String§status: ReleaseStatus§created_at: StringTrait Implementations§
Source§impl Clone for ReleaseEntry
impl Clone for ReleaseEntry
Source§fn clone(&self) -> ReleaseEntry
fn clone(&self) -> ReleaseEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ReleaseEntry
impl Debug for ReleaseEntry
Source§impl<'de> Deserialize<'de> for ReleaseEntry
impl<'de> Deserialize<'de> for ReleaseEntry
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 ReleaseEntry
impl RefUnwindSafe for ReleaseEntry
impl Send for ReleaseEntry
impl Sync for ReleaseEntry
impl Unpin for ReleaseEntry
impl UnsafeUnpin for ReleaseEntry
impl UnwindSafe for ReleaseEntry
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