pub struct ActionVariable {
pub data: Option<String>,
pub name: Option<String>,
pub owner_id: Option<i64>,
pub repo_id: Option<i64>,
}Expand description
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
Trait Implementations§
Source§impl Clone for ActionVariable
impl Clone for ActionVariable
Source§fn clone(&self) -> ActionVariable
fn clone(&self) -> ActionVariable
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 ActionVariable
impl Debug for ActionVariable
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 FromResponse for ActionVariable
impl FromResponse for ActionVariable
fn from_response( response: ApiResponse, has_body: bool, ) -> Result<Self, StructureError>
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