pub struct Changelog {
pub body: String,
pub hidden: Option<bool>,
pub title: String,
pub type_: Option<String>,
}
Fields§
§body: String
Body content of the changelog
Visibility of the changelog
title: String
Title of the changelog
type_: Option<String>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Changelog
impl<'de> Deserialize<'de> for Changelog
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 Changelog
impl RefUnwindSafe for Changelog
impl Send for Changelog
impl Sync for Changelog
impl Unpin for Changelog
impl UnwindSafe for Changelog
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