libcros 0.2.0

A Rust library that provides easy-to-use functions for interacting with a Chrome device
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod clear;
pub mod define_space;
pub mod physical_presence;
pub mod read;
pub mod write;

pub use clear::TlclForceClear;
pub use define_space::{
  TlclDefineSpace, TlclDefineSpaceEx, TlclUndefineSpace, TlclUndefineSpaceEx,
};
pub use physical_presence::{
  TlclAssertPhysicalPresence, TlclPhysicalPresenceCMDEnable, TlclSetEnable,
};
pub use read::{TlclGetPermissions, TlclRead, TlclReadWithOffset};
pub use write::TlclWrite;