pub struct ReleaseEvent {
pub release_event_type: String,
pub event_date: Option<DateTime<Utc>>,
pub territory: Option<String>,
pub extensions: Option<Extensions>,
pub comments: Option<Vec<Comment>>,
}
Fields§
§release_event_type: String
§event_date: Option<DateTime<Utc>>
§territory: Option<String>
§extensions: Option<Extensions>
Extensions for release event
comments: Option<Vec<Comment>>
Comments associated with release event
Trait Implementations§
Source§impl Clone for ReleaseEvent
impl Clone for ReleaseEvent
Source§fn clone(&self) -> ReleaseEvent
fn clone(&self) -> ReleaseEvent
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 ReleaseEvent
impl Debug for ReleaseEvent
Source§impl<'de> Deserialize<'de> for ReleaseEvent
impl<'de> Deserialize<'de> for ReleaseEvent
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 ReleaseEvent
impl RefUnwindSafe for ReleaseEvent
impl Send for ReleaseEvent
impl Sync for ReleaseEvent
impl Unpin for ReleaseEvent
impl UnwindSafe for ReleaseEvent
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