pub struct GitRefUpdate {
pub is_locked: Option<bool>,
pub name: Option<String>,
pub new_object_id: Option<String>,
pub old_object_id: Option<String>,
pub repository_id: Option<String>,
}Fields§
§is_locked: Option<bool>§name: Option<String>§new_object_id: Option<String>§old_object_id: Option<String>§repository_id: Option<String>Implementations§
Source§impl GitRefUpdate
impl GitRefUpdate
Trait Implementations§
Source§impl Clone for GitRefUpdate
impl Clone for GitRefUpdate
Source§fn clone(&self) -> GitRefUpdate
fn clone(&self) -> GitRefUpdate
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 GitRefUpdate
impl Debug for GitRefUpdate
Source§impl Default for GitRefUpdate
impl Default for GitRefUpdate
Source§fn default() -> GitRefUpdate
fn default() -> GitRefUpdate
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitRefUpdate
impl<'de> Deserialize<'de> for GitRefUpdate
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
Source§impl PartialEq for GitRefUpdate
impl PartialEq for GitRefUpdate
Source§impl Serialize for GitRefUpdate
impl Serialize for GitRefUpdate
impl StructuralPartialEq for GitRefUpdate
Auto Trait Implementations§
impl Freeze for GitRefUpdate
impl RefUnwindSafe for GitRefUpdate
impl Send for GitRefUpdate
impl Sync for GitRefUpdate
impl Unpin for GitRefUpdate
impl UnwindSafe for GitRefUpdate
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