pub struct SearchResult {
pub name: String,
pub description: String,
pub installed: bool,
pub supports: Vec<String>,
pub recommended_ram_mb: Option<u64>,
}Fields§
§name: String§description: String§installed: bool§supports: Vec<String>Integrations this service supports (e.g., “oidc”, “smtp”).
recommended_ram_mb: Option<u64>Recommended RAM in MB from the service’s manifest, when declared. Used to warn before an install would overcommit the machine’s memory.
Auto Trait Implementations§
impl Freeze for SearchResult
impl RefUnwindSafe for SearchResult
impl Send for SearchResult
impl Sync for SearchResult
impl Unpin for SearchResult
impl UnsafeUnpin for SearchResult
impl UnwindSafe for SearchResult
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