#[non_exhaustive]pub struct GetPythonPackageRequest {
pub name: String,
/* private fields */
}Expand description
The request to get python packages.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The name of the python package.
Implementations§
Trait Implementations§
Source§impl Clone for GetPythonPackageRequest
impl Clone for GetPythonPackageRequest
Source§fn clone(&self) -> GetPythonPackageRequest
fn clone(&self) -> GetPythonPackageRequest
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 GetPythonPackageRequest
impl Debug for GetPythonPackageRequest
Source§impl Default for GetPythonPackageRequest
impl Default for GetPythonPackageRequest
Source§fn default() -> GetPythonPackageRequest
fn default() -> GetPythonPackageRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetPythonPackageRequest
impl Message for GetPythonPackageRequest
Source§impl PartialEq for GetPythonPackageRequest
impl PartialEq for GetPythonPackageRequest
impl StructuralPartialEq for GetPythonPackageRequest
Auto Trait Implementations§
impl Freeze for GetPythonPackageRequest
impl RefUnwindSafe for GetPythonPackageRequest
impl Send for GetPythonPackageRequest
impl Sync for GetPythonPackageRequest
impl Unpin for GetPythonPackageRequest
impl UnsafeUnpin for GetPythonPackageRequest
impl UnwindSafe for GetPythonPackageRequest
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