pub struct MarketplacesAllowlist {
pub approved: Vec<String>,
}Expand description
On-disk format of the marketplaces allowlist.
Fields§
§approved: Vec<String>Approved marketplace URLs.
Trait Implementations§
Source§impl Clone for MarketplacesAllowlist
impl Clone for MarketplacesAllowlist
Source§fn clone(&self) -> MarketplacesAllowlist
fn clone(&self) -> MarketplacesAllowlist
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MarketplacesAllowlist
impl Debug for MarketplacesAllowlist
Source§impl Default for MarketplacesAllowlist
impl Default for MarketplacesAllowlist
Source§fn default() -> MarketplacesAllowlist
fn default() -> MarketplacesAllowlist
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MarketplacesAllowlist
impl<'de> Deserialize<'de> for MarketplacesAllowlist
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 Freeze for MarketplacesAllowlist
impl RefUnwindSafe for MarketplacesAllowlist
impl Send for MarketplacesAllowlist
impl Sync for MarketplacesAllowlist
impl Unpin for MarketplacesAllowlist
impl UnsafeUnpin for MarketplacesAllowlist
impl UnwindSafe for MarketplacesAllowlist
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