pub struct StoreListNamespacesRequest {
pub prefix: Option<Vec<String>>,
pub suffix: Option<Vec<String>>,
pub max_depth: Option<i32>,
pub limit: Option<i32>,
pub offset: Option<i32>,
}Fields§
§prefix: Option<Vec<String>>Optional list of strings representing the prefix to filter namespaces.
suffix: Option<Vec<String>>Optional list of strings representing the suffix to filter namespaces.
max_depth: Option<i32>Optional integer specifying the maximum depth of namespaces to return.
limit: Option<i32>Maximum number of namespaces to return (default is 100).
offset: Option<i32>Number of namespaces to skip before returning results (default is 0).
Implementations§
Source§impl StoreListNamespacesRequest
impl StoreListNamespacesRequest
pub fn new() -> StoreListNamespacesRequest
Trait Implementations§
Source§impl Clone for StoreListNamespacesRequest
impl Clone for StoreListNamespacesRequest
Source§fn clone(&self) -> StoreListNamespacesRequest
fn clone(&self) -> StoreListNamespacesRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StoreListNamespacesRequest
impl Debug for StoreListNamespacesRequest
Source§impl Default for StoreListNamespacesRequest
impl Default for StoreListNamespacesRequest
Source§fn default() -> StoreListNamespacesRequest
fn default() -> StoreListNamespacesRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoreListNamespacesRequest
impl<'de> Deserialize<'de> for StoreListNamespacesRequest
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
impl StructuralPartialEq for StoreListNamespacesRequest
Auto Trait Implementations§
impl Freeze for StoreListNamespacesRequest
impl RefUnwindSafe for StoreListNamespacesRequest
impl Send for StoreListNamespacesRequest
impl Sync for StoreListNamespacesRequest
impl Unpin for StoreListNamespacesRequest
impl UnwindSafe for StoreListNamespacesRequest
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