Trait assert_fs::ChildPathWriteBinExt[][src]

pub trait ChildPathWriteBinExt {
    fn write_binary(&self, data: &[u8]) -> Result<()>;
}

Write a binary file at ChildPath.

Required Methods

Write a binary file at ChildPath.

Examples

use assert_fs::prelude::*;

let temp = assert_fs::TempDir::new().unwrap();
temp.child("foo.txt").write_binary(b"To be or not to be...").unwrap();
temp.close().unwrap();

Implementors