pub struct Collection<T> { /* private fields */ }Expand description
collection
Implementations§
Source§impl<T> Collection<T>
Auto-generated by derive_getters::Getters.
impl<T> Collection<T>
Auto-generated by derive_getters::Getters.
Sourcepub fn handle(&self) -> &CollectionHandle
pub fn handle(&self) -> &CollectionHandle
handle for collecttion
Sourcepub fn total_length(&self) -> &usize
pub fn total_length(&self) -> &usize
length of collection
Sourcepub fn require_release(&self) -> &bool
pub fn require_release(&self) -> &bool
When true, client must be call SqlFunServerApi::release_collection
Sourcepub fn expire_at(&self) -> &UtcDateTime
pub fn expire_at(&self) -> &UtcDateTime
expiration time
Trait Implementations§
Source§impl<'de, T> Deserialize<'de> for Collection<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for Collection<T>where
T: Deserialize<'de>,
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<T> Freeze for Collection<T>
impl<T> RefUnwindSafe for Collection<T>where
T: RefUnwindSafe,
impl<T> Send for Collection<T>where
T: Send,
impl<T> Sync for Collection<T>where
T: Sync,
impl<T> Unpin for Collection<T>where
T: Unpin,
impl<T> UnwindSafe for Collection<T>where
T: UnwindSafe,
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