pub struct ActionVariable {
pub data: Option<String>,
pub name: Option<String>,
pub owner_id: Option<i64>,
pub repo_id: Option<i64>,
}
Expand description
ActionVariable : ActionVariable return value of the query API
Fields§
§data: Option<String>
the value of the variable
name: Option<String>
the name of the variable
owner_id: Option<i64>
the owner to which the variable belongs
repo_id: Option<i64>
the repository to which the variable belongs
Implementations§
Source§impl ActionVariable
impl ActionVariable
Sourcepub fn new() -> ActionVariable
pub fn new() -> ActionVariable
ActionVariable return value of the query API
Trait Implementations§
Source§impl Clone for ActionVariable
impl Clone for ActionVariable
Source§fn clone(&self) -> ActionVariable
fn clone(&self) -> ActionVariable
Returns a copy 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 ActionVariable
impl Debug for ActionVariable
Source§impl Default for ActionVariable
impl Default for ActionVariable
Source§fn default() -> ActionVariable
fn default() -> ActionVariable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActionVariable
impl<'de> Deserialize<'de> for ActionVariable
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 ActionVariable
impl PartialEq for ActionVariable
Source§impl Serialize for ActionVariable
impl Serialize for ActionVariable
impl StructuralPartialEq for ActionVariable
Auto Trait Implementations§
impl Freeze for ActionVariable
impl RefUnwindSafe for ActionVariable
impl Send for ActionVariable
impl Sync for ActionVariable
impl Unpin for ActionVariable
impl UnwindSafe for ActionVariable
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