pub struct IntegrationInstallationRequest {
pub id: i32,
pub node_id: Option<String>,
pub account: Box<IntegrationInstallationRequestAccount>,
pub requester: Box<SimpleUser>,
pub created_at: String,
}
Expand description
IntegrationInstallationRequest : Request to install an integration on a target
Fields§
§id: i32
Unique identifier of the request installation.
node_id: Option<String>
§account: Box<IntegrationInstallationRequestAccount>
§requester: Box<SimpleUser>
§created_at: String
Implementations§
Source§impl IntegrationInstallationRequest
impl IntegrationInstallationRequest
Sourcepub fn new(
id: i32,
account: IntegrationInstallationRequestAccount,
requester: SimpleUser,
created_at: String,
) -> IntegrationInstallationRequest
pub fn new( id: i32, account: IntegrationInstallationRequestAccount, requester: SimpleUser, created_at: String, ) -> IntegrationInstallationRequest
Request to install an integration on a target
Trait Implementations§
Source§impl Clone for IntegrationInstallationRequest
impl Clone for IntegrationInstallationRequest
Source§fn clone(&self) -> IntegrationInstallationRequest
fn clone(&self) -> IntegrationInstallationRequest
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 IntegrationInstallationRequest
impl Default for IntegrationInstallationRequest
Source§fn default() -> IntegrationInstallationRequest
fn default() -> IntegrationInstallationRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrationInstallationRequest
impl<'de> Deserialize<'de> for IntegrationInstallationRequest
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 IntegrationInstallationRequest
impl PartialEq for IntegrationInstallationRequest
Source§fn eq(&self, other: &IntegrationInstallationRequest) -> bool
fn eq(&self, other: &IntegrationInstallationRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for IntegrationInstallationRequest
Auto Trait Implementations§
impl Freeze for IntegrationInstallationRequest
impl RefUnwindSafe for IntegrationInstallationRequest
impl Send for IntegrationInstallationRequest
impl Sync for IntegrationInstallationRequest
impl Unpin for IntegrationInstallationRequest
impl UnwindSafe for IntegrationInstallationRequest
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