pub struct StoreArgs {
pub key: String,
pub value: Vec<u8>,
pub total_index: Nat,
pub file_type: String,
pub is_http_open: bool,
pub total_size: u64,
pub index: Nat,
}
Fields§
§key: String
§value: Vec<u8>
§total_index: Nat
§file_type: String
§is_http_open: bool
§total_size: u64
§index: Nat
Trait Implementations§
Source§impl CandidType for StoreArgs
impl CandidType for StoreArgs
Source§impl<'de> Deserialize<'de> for StoreArgs
impl<'de> Deserialize<'de> for StoreArgs
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 StoreArgs
impl RefUnwindSafe for StoreArgs
impl Send for StoreArgs
impl Sync for StoreArgs
impl Unpin for StoreArgs
impl UnwindSafe for StoreArgs
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