pub struct RulesetCatalogEntryDto {
pub id: String,
pub canonical_id: String,
pub version: String,
pub region: String,
pub profile: String,
pub schema_version: String,
pub is_default: bool,
pub aliases: Vec<String>,
pub defaults: RulesetDefaultsDto,
pub source_notes: Vec<RulesetSourceNoteDto>,
}Fields§
§id: String§canonical_id: String§version: String§region: String§profile: String§schema_version: String§is_default: bool§aliases: Vec<String>§defaults: RulesetDefaultsDto§source_notes: Vec<RulesetSourceNoteDto>Trait Implementations§
Source§impl Clone for RulesetCatalogEntryDto
impl Clone for RulesetCatalogEntryDto
Source§fn clone(&self) -> RulesetCatalogEntryDto
fn clone(&self) -> RulesetCatalogEntryDto
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 RulesetCatalogEntryDto
impl Debug for RulesetCatalogEntryDto
Source§impl<'de> Deserialize<'de> for RulesetCatalogEntryDto
impl<'de> Deserialize<'de> for RulesetCatalogEntryDto
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<&RulesetRegistryEntry> for RulesetCatalogEntryDto
impl From<&RulesetRegistryEntry> for RulesetCatalogEntryDto
Source§fn from(value: &RulesetRegistryEntry) -> Self
fn from(value: &RulesetRegistryEntry) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RulesetCatalogEntryDto
impl RefUnwindSafe for RulesetCatalogEntryDto
impl Send for RulesetCatalogEntryDto
impl Sync for RulesetCatalogEntryDto
impl Unpin for RulesetCatalogEntryDto
impl UnsafeUnpin for RulesetCatalogEntryDto
impl UnwindSafe for RulesetCatalogEntryDto
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