pub struct InstallSpaceSkillResource {
pub space_id: String,
pub computer_id: String,
pub provider: String,
pub group: String,
pub name: String,
pub version: String,
pub install_path: String,
pub files: Vec<String>,
pub revision: u64,
}Fields§
§space_id: String§computer_id: String§provider: String§group: String§name: String§version: String§install_path: String§files: Vec<String>§revision: u64Trait Implementations§
Source§impl Clone for InstallSpaceSkillResource
impl Clone for InstallSpaceSkillResource
Source§fn clone(&self) -> InstallSpaceSkillResource
fn clone(&self) -> InstallSpaceSkillResource
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 InstallSpaceSkillResource
impl Debug for InstallSpaceSkillResource
Source§impl<'de> Deserialize<'de> for InstallSpaceSkillResource
impl<'de> Deserialize<'de> for InstallSpaceSkillResource
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 Eq for InstallSpaceSkillResource
impl StructuralPartialEq for InstallSpaceSkillResource
Auto Trait Implementations§
impl Freeze for InstallSpaceSkillResource
impl RefUnwindSafe for InstallSpaceSkillResource
impl Send for InstallSpaceSkillResource
impl Sync for InstallSpaceSkillResource
impl Unpin for InstallSpaceSkillResource
impl UnsafeUnpin for InstallSpaceSkillResource
impl UnwindSafe for InstallSpaceSkillResource
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