[][src]Struct assert_cmd::assert::StrContentOutputPredicate

pub struct StrContentOutputPredicate(_);

Predicate used by IntoOutputPredicate for str.

Example

use assert_cmd::prelude::*;

use std::process::Command;

Command::cargo_bin("bin_fixture")
    .unwrap()
    .env("stdout", "hello")
    .env("stderr", "world")
    .assert()
    .stderr("world\n");

Trait Implementations

impl IntoOutputPredicate<StrContentOutputPredicate> for String[src]

type Predicate = StrContentOutputPredicate

The type of the predicate being returned.

impl IntoOutputPredicate<StrContentOutputPredicate> for &'static str[src]

type Predicate = StrContentOutputPredicate

The type of the predicate being returned.

impl Clone for StrContentOutputPredicate[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Display for StrContentOutputPredicate[src]

impl Debug for StrContentOutputPredicate[src]

impl Predicate<[u8]> for StrContentOutputPredicate[src]

impl PredicateReflection for StrContentOutputPredicate[src]

fn children<'a>(&'a self) -> Box<dyn Iterator<Item = Child<'a>> + 'a>[src]

Nested Predicates of the current Predicate.

Auto Trait Implementations

Blanket Implementations

impl<P> IntoOutputPredicate for P where
    P: Predicate<[u8]>, 
[src]

type Predicate = P

The type of the predicate being returned.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<P, Item> PredicateBoxExt for P where
    P: Predicate<Item>, 
[src]

fn boxed(self) -> BoxPredicate<Item> where
    Self: Send + Sync + 'static, 
[src]

Returns a BoxPredicate wrapper around this Predicate type. Read more

impl<P, Item> PredicateNameExt for P where
    Item: ?Sized,
    P: Predicate<Item>, 
[src]

fn name(self, name: &'static str) -> NamePredicate<Self, Item>[src]

Name a predicate expression. Read more

impl<P, Item> PredicateBooleanExt for P where
    Item: ?Sized,
    P: Predicate<Item>, 
[src]

fn and<B>(self, other: B) -> AndPredicate<Self, B, Item> where
    B: Predicate<Item>, 
[src]

Compute the logical AND of two Predicate results, returning the result. Read more

fn or<B>(self, other: B) -> OrPredicate<Self, B, Item> where
    B: Predicate<Item>, 
[src]

Compute the logical OR of two Predicate results, returning the result. Read more

fn not(self) -> NotPredicate<Self, Item>[src]

Compute the logical NOT of a Predicate, returning the result. Read more

impl<P> PredicateFileContentExt for P where
    P: Predicate<[u8]>, 
[src]

fn from_file_path(self) -> FileContentPredicate<Self>[src]

Returns a FileContentPredicate that adapts Self to a file content Predicate. Read more