pub struct InstallFromWorkspaceRequest {
pub source_workspace_id: String,
pub installation_id: f64,
}
Fields§
§source_workspace_id: String
The ID of the workspace containing the installation to copy
installation_id: f64
The ID of the GitHub installation to copy
Implementations§
Source§impl InstallFromWorkspaceRequest
impl InstallFromWorkspaceRequest
pub fn new( source_workspace_id: String, installation_id: f64, ) -> InstallFromWorkspaceRequest
Trait Implementations§
Source§impl Clone for InstallFromWorkspaceRequest
impl Clone for InstallFromWorkspaceRequest
Source§fn clone(&self) -> InstallFromWorkspaceRequest
fn clone(&self) -> InstallFromWorkspaceRequest
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 InstallFromWorkspaceRequest
impl Debug for InstallFromWorkspaceRequest
Source§impl Default for InstallFromWorkspaceRequest
impl Default for InstallFromWorkspaceRequest
Source§fn default() -> InstallFromWorkspaceRequest
fn default() -> InstallFromWorkspaceRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstallFromWorkspaceRequest
impl<'de> Deserialize<'de> for InstallFromWorkspaceRequest
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
impl StructuralPartialEq for InstallFromWorkspaceRequest
Auto Trait Implementations§
impl Freeze for InstallFromWorkspaceRequest
impl RefUnwindSafe for InstallFromWorkspaceRequest
impl Send for InstallFromWorkspaceRequest
impl Sync for InstallFromWorkspaceRequest
impl Unpin for InstallFromWorkspaceRequest
impl UnwindSafe for InstallFromWorkspaceRequest
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