pub struct ListDataStores {
pub universe_id: u64,
pub api_key: String,
pub limit: u64,
pub prefix: Option<String>,
pub cursor: Option<String>,
}Expand description
List all Datastores in the specified “universe” or game
Fields§
§universe_id: u64The value of DataModel.GameId, which is visible in the URL on the universe’s Configure page.
api_key: StringAPI key of Roblox Open Cloud
limit: u64(INTEGER) Maximum number of items to return
prefix: Option<String>(Optional) Return only data stores with this prefix
cursor: Option<String>(Optional) Cursor for the next set of data
Trait Implementations§
Source§impl Args for ListDataStores
impl Args for ListDataStores
Source§impl Debug for ListDataStores
impl Debug for ListDataStores
Source§impl FromArgMatches for ListDataStores
impl FromArgMatches for ListDataStores
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl Freeze for ListDataStores
impl RefUnwindSafe for ListDataStores
impl Send for ListDataStores
impl Sync for ListDataStores
impl Unpin for ListDataStores
impl UnsafeUnpin for ListDataStores
impl UnwindSafe for ListDataStores
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