pub struct StateStore {
pub certs: Vec<CertRecord>,
}Expand description
File-backed collection of CertRecords.
Single-writer assumption — concurrent cell runs must not share the same file.
Fields§
§certs: Vec<CertRecord>Implementations§
Trait Implementations§
Source§impl Debug for StateStore
impl Debug for StateStore
Source§impl Default for StateStore
impl Default for StateStore
Source§fn default() -> StateStore
fn default() -> StateStore
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StateStore
impl<'de> Deserialize<'de> for StateStore
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for StateStore
impl RefUnwindSafe for StateStore
impl Send for StateStore
impl Sync for StateStore
impl Unpin for StateStore
impl UnsafeUnpin for StateStore
impl UnwindSafe for StateStore
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more