pub struct ActionsUpdateRepoVariableRequest {
pub name: Option<String>,
pub value: Option<String>,
}
Fields§
§name: Option<String>
The name of the variable.
value: Option<String>
The value of the variable.
Implementations§
Trait Implementations§
Source§impl Clone for ActionsUpdateRepoVariableRequest
impl Clone for ActionsUpdateRepoVariableRequest
Source§fn clone(&self) -> ActionsUpdateRepoVariableRequest
fn clone(&self) -> ActionsUpdateRepoVariableRequest
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 Default for ActionsUpdateRepoVariableRequest
impl Default for ActionsUpdateRepoVariableRequest
Source§fn default() -> ActionsUpdateRepoVariableRequest
fn default() -> ActionsUpdateRepoVariableRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionsUpdateRepoVariableRequest
impl<'de> Deserialize<'de> for ActionsUpdateRepoVariableRequest
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 ActionsUpdateRepoVariableRequest
impl PartialEq for ActionsUpdateRepoVariableRequest
Source§fn eq(&self, other: &ActionsUpdateRepoVariableRequest) -> bool
fn eq(&self, other: &ActionsUpdateRepoVariableRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ActionsUpdateRepoVariableRequest
Auto Trait Implementations§
impl Freeze for ActionsUpdateRepoVariableRequest
impl RefUnwindSafe for ActionsUpdateRepoVariableRequest
impl Send for ActionsUpdateRepoVariableRequest
impl Sync for ActionsUpdateRepoVariableRequest
impl Unpin for ActionsUpdateRepoVariableRequest
impl UnwindSafe for ActionsUpdateRepoVariableRequest
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