pub struct UpdateReleaseParams {
pub body: Option<String>,
pub draft: Option<bool>,
pub is_authorized_only: Option<bool>,
pub name: Option<String>,
pub prerelease: Option<bool>,
pub tag_name: Option<String>,
pub target_commitish: Option<String>,
}Fields§
§body: Option<String>§draft: Option<bool>§name: Option<String>§prerelease: Option<bool>§tag_name: Option<String>§target_commitish: Option<String>Trait Implementations§
Source§impl Clone for UpdateReleaseParams
impl Clone for UpdateReleaseParams
Source§fn clone(&self) -> UpdateReleaseParams
fn clone(&self) -> UpdateReleaseParams
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 UpdateReleaseParams
impl Debug for UpdateReleaseParams
Source§impl<'de> Deserialize<'de> for UpdateReleaseParams
impl<'de> Deserialize<'de> for UpdateReleaseParams
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 UpdateReleaseParams
impl RefUnwindSafe for UpdateReleaseParams
impl Send for UpdateReleaseParams
impl Sync for UpdateReleaseParams
impl Unpin for UpdateReleaseParams
impl UnsafeUnpin for UpdateReleaseParams
impl UnwindSafe for UpdateReleaseParams
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