pub struct ReleaseRecord {
pub id: String,
pub version: String,
pub status: ReleaseStatus,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§version: String§status: ReleaseStatus§created_at: String§updated_at: StringImplementations§
Source§impl ReleaseRecord
impl ReleaseRecord
pub fn new_staged(version: &str) -> Self
Trait Implementations§
Source§impl Clone for ReleaseRecord
impl Clone for ReleaseRecord
Source§fn clone(&self) -> ReleaseRecord
fn clone(&self) -> ReleaseRecord
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 moreAuto Trait Implementations§
impl Freeze for ReleaseRecord
impl RefUnwindSafe for ReleaseRecord
impl Send for ReleaseRecord
impl Sync for ReleaseRecord
impl Unpin for ReleaseRecord
impl UnsafeUnpin for ReleaseRecord
impl UnwindSafe for ReleaseRecord
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