pub struct OutputExpectation {
pub resource: String,
pub relative_path: String,
pub state: OutputState,
}Expand description
One independently observable path beneath a writable resource.
Fields§
§resource: StringWritable resource identity containing the path.
relative_path: StringSlash-separated relative path without parent traversal.
state: OutputStateExact expected state.
Trait Implementations§
Source§impl Clone for OutputExpectation
impl Clone for OutputExpectation
Source§fn clone(&self) -> OutputExpectation
fn clone(&self) -> OutputExpectation
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 OutputExpectation
impl Debug for OutputExpectation
impl Eq for OutputExpectation
Source§impl PartialEq for OutputExpectation
impl PartialEq for OutputExpectation
impl StructuralPartialEq for OutputExpectation
Auto Trait Implementations§
impl Freeze for OutputExpectation
impl RefUnwindSafe for OutputExpectation
impl Send for OutputExpectation
impl Sync for OutputExpectation
impl Unpin for OutputExpectation
impl UnsafeUnpin for OutputExpectation
impl UnwindSafe for OutputExpectation
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