pub struct PluginResponse {Show 31 fields
pub url: ItemUrl,
pub id: PluginId,
pub creation_date: OffsetDateTime,
pub name: PluginName,
pub version: PluginVersion,
pub dock_image: DockImage,
pub public_repo: PluginRepo,
pub icon: String,
pub plugin_type: PluginType,
pub stars: u32,
pub authors: String,
pub title: String,
pub category: String,
pub description: String,
pub documentation: String,
pub license: String,
pub execshell: String,
pub selfpath: String,
pub selfexec: String,
pub min_number_of_workers: u32,
pub max_number_of_workers: u32,
pub min_cpu_limit: u32,
pub max_cpu_limit: u32,
pub min_memory_limit: u32,
pub max_memory_limit: u32,
pub min_gpu_limit: u32,
pub max_gpu_limit: u32,
pub meta: ItemUrl,
pub parameters: CollectionUrl,
pub instances: CollectionUrl,
pub compute_resources: CollectionUrl,
}
Fields§
§url: ItemUrl
§id: PluginId
§creation_date: OffsetDateTime
§name: PluginName
§version: PluginVersion
§dock_image: DockImage
§public_repo: PluginRepo
§icon: String
§plugin_type: PluginType
§stars: u32
§title: String
§category: String
§description: String
§documentation: String
§license: String
§execshell: String
§selfpath: String
§selfexec: String
§min_number_of_workers: u32
§max_number_of_workers: u32
§min_cpu_limit: u32
§max_cpu_limit: u32
§min_memory_limit: u32
§max_memory_limit: u32
§min_gpu_limit: u32
§max_gpu_limit: u32
§meta: ItemUrl
§parameters: CollectionUrl
§instances: CollectionUrl
§compute_resources: CollectionUrl
Trait Implementations§
Source§impl Debug for PluginResponse
impl Debug for PluginResponse
Source§impl<'de> Deserialize<'de> for PluginResponse
impl<'de> Deserialize<'de> for PluginResponse
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
Auto Trait Implementations§
impl Freeze for PluginResponse
impl RefUnwindSafe for PluginResponse
impl Send for PluginResponse
impl Sync for PluginResponse
impl Unpin for PluginResponse
impl UnwindSafe for PluginResponse
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