Home
last modified time | relevance | path

Searched refs:FileState (Results 1 – 2 of 2) sorted by relevance

/trusty/user/base/lib/storage/rust/src/
Dlib.rs934 fn try_next(&mut self) -> Result<Option<(String, FileState)>, Error> { in try_next() argument
957 sys::storage_file_list_flag_STORAGE_FILE_LIST_COMMITTED => FileState::Committed, in try_next()
958 sys::storage_file_list_flag_STORAGE_FILE_LIST_ADDED => FileState::Added, in try_next()
959 sys::storage_file_list_flag_STORAGE_FILE_LIST_REMOVED => FileState::Removed, in try_next()
990 type Item = Result<(String, FileState), Error>;
1027 pub enum FileState { enum
Dtest.rs1 use crate::{Error, ErrorCode, FileState, OpenMode, Port, Session};
429 assert_eq!(Some(Ok((file_a.into(), FileState::Committed))), dir_iter.next()); in list_during_transaction()
430 assert_eq!(Some(Ok((file_b.into(), FileState::Added))), dir_iter.next()); in list_during_transaction()