pub struct PropertyRuleIssueDetails {
pub sourceCodeLocation: SourceCodeLocation,
pub propertyRuleIssueReason: PropertyRuleIssueReason,
pub propertyValue: Option<String>,
}Expand description
This issue warns about errors in property rules that lead to property registrations being ignored.
Fields§
§sourceCodeLocation: SourceCodeLocationSource code position of the property rule.
propertyRuleIssueReason: PropertyRuleIssueReasonReason why the property rule was discarded.
propertyValue: Option<String>The value of the property rule property that failed to parse
Trait Implementations§
Source§impl Clone for PropertyRuleIssueDetails
impl Clone for PropertyRuleIssueDetails
Source§fn clone(&self) -> PropertyRuleIssueDetails
fn clone(&self) -> PropertyRuleIssueDetails
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 PropertyRuleIssueDetails
impl Debug for PropertyRuleIssueDetails
Source§impl Default for PropertyRuleIssueDetails
impl Default for PropertyRuleIssueDetails
Source§fn default() -> PropertyRuleIssueDetails
fn default() -> PropertyRuleIssueDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyRuleIssueDetails
impl<'de> Deserialize<'de> for PropertyRuleIssueDetails
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 PropertyRuleIssueDetails
impl RefUnwindSafe for PropertyRuleIssueDetails
impl Send for PropertyRuleIssueDetails
impl Sync for PropertyRuleIssueDetails
impl Unpin for PropertyRuleIssueDetails
impl UnsafeUnpin for PropertyRuleIssueDetails
impl UnwindSafe for PropertyRuleIssueDetails
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