pub struct RegistryTestView {
pub name: String,
pub kind: String,
pub services: Vec<String>,
pub step_count: usize,
pub step_kinds: Vec<String>,
pub needs_browser: bool,
pub requires_sudo: bool,
}Expand description
One discoverable registry test (ryra test search).
Fields§
§name: String§kind: String"simple" (setup then assert) or "lifecycle" (interleaved steps).
services: Vec<String>§step_count: usize§step_kinds: Vec<String>§needs_browser: bool§requires_sudo: boolTrait Implementations§
Source§impl Clone for RegistryTestView
impl Clone for RegistryTestView
Source§fn clone(&self) -> RegistryTestView
fn clone(&self) -> RegistryTestView
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 RegistryTestView
impl Debug for RegistryTestView
Source§impl<'de> Deserialize<'de> for RegistryTestView
impl<'de> Deserialize<'de> for RegistryTestView
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 RegistryTestView
impl RefUnwindSafe for RegistryTestView
impl Send for RegistryTestView
impl Sync for RegistryTestView
impl Unpin for RegistryTestView
impl UnsafeUnpin for RegistryTestView
impl UnwindSafe for RegistryTestView
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