pub struct GetPersistentLaunchersParams<'a, S: AsRef<str>> {
pub persistent_launcher_ids: Option<&'a [S]>,
}
Fields§
§persistent_launcher_ids: Option<&'a [S]>
Which launchers to fetch. If unspecified, all persistent launchers will be fetched.
Trait Implementations§
source§impl<'a, S: Clone + AsRef<str>> Clone for GetPersistentLaunchersParams<'a, S>
impl<'a, S: Clone + AsRef<str>> Clone for GetPersistentLaunchersParams<'a, S>
source§fn clone(&self) -> GetPersistentLaunchersParams<'a, S>
fn clone(&self) -> GetPersistentLaunchersParams<'a, S>
Returns a copy 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 moreAuto Trait Implementations§
impl<'a, S> Freeze for GetPersistentLaunchersParams<'a, S>
impl<'a, S> RefUnwindSafe for GetPersistentLaunchersParams<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for GetPersistentLaunchersParams<'a, S>where
S: Sync,
impl<'a, S> Sync for GetPersistentLaunchersParams<'a, S>where
S: Sync,
impl<'a, S> Unpin for GetPersistentLaunchersParams<'a, S>
impl<'a, S> UnwindSafe for GetPersistentLaunchersParams<'a, S>where
S: RefUnwindSafe,
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