Struct mockito::BinaryBody
source · [−]pub struct BinaryBody { /* private fields */ }Expand description
Represents a binary object the body should be matched against
Implementations
sourceimpl BinaryBody
impl BinaryBody
sourcepub fn from_path(path: &Path) -> Result<Self, Error>
pub fn from_path(path: &Path) -> Result<Self, Error>
Read the content from path and initialize a BinaryBody
Errors
The same resulting from a failed std::fs::read.
sourcepub fn from_file(file: &mut File) -> Self
pub fn from_file(file: &mut File) -> Self
Read the content from a &mut File and initialize a BinaryBody
sourcepub fn from_bytes(content: Vec<u8>) -> Self
pub fn from_bytes(content: Vec<u8>) -> Self
Instantiate the matcher directly passing the content
Trait Implementations
sourceimpl Clone for BinaryBody
impl Clone for BinaryBody
sourcefn clone(&self) -> BinaryBody
fn clone(&self) -> BinaryBody
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for BinaryBody
impl Debug for BinaryBody
sourceimpl Display for BinaryBody
impl Display for BinaryBody
Auto Trait Implementations
impl RefUnwindSafe for BinaryBody
impl Send for BinaryBody
impl Sync for BinaryBody
impl Unpin for BinaryBody
impl UnwindSafe for BinaryBody
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more