pub struct ListOptions {
pub prefix: Option<String>,
pub limit: Option<u64>,
pub cursor: Option<String>,
}Fields§
§prefix: Option<String>§limit: Option<u64>§cursor: Option<String>Trait Implementations§
Source§impl Debug for ListOptions
impl Debug for ListOptions
Source§impl<'de> Deserialize<'de> for ListOptions
impl<'de> Deserialize<'de> for ListOptions
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
Source§impl From<JsValue> for ListOptions
impl From<JsValue> for ListOptions
Source§fn from(t: JsValue) -> ListOptions
fn from(t: JsValue) -> ListOptions
Converts to this type from the input type.
Source§impl From<ListOptions> for JsValue
impl From<ListOptions> for JsValue
Source§fn from(t: ListOptions) -> JsValue
fn from(t: ListOptions) -> JsValue
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ListOptions
impl RefUnwindSafe for ListOptions
impl Send for ListOptions
impl Sync for ListOptions
impl Unpin for ListOptions
impl UnwindSafe for ListOptions
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