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