pub struct DeprecationIssueDetails {
pub affectedFrame: Option<AffectedFrame>,
pub sourceCodeLocation: SourceCodeLocation,
pub type_: String,
}Expand description
This issue tracks information needed to print a deprecation message. https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/third_party/blink/renderer/core/frame/deprecation/README.md
Fields§
§affectedFrame: Option<AffectedFrame>§sourceCodeLocation: SourceCodeLocation§type_: StringOne of the deprecation names from third_party/blink/renderer/core/frame/deprecation/deprecation.json5
Trait Implementations§
Source§impl Clone for DeprecationIssueDetails
impl Clone for DeprecationIssueDetails
Source§fn clone(&self) -> DeprecationIssueDetails
fn clone(&self) -> DeprecationIssueDetails
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 DeprecationIssueDetails
impl Debug for DeprecationIssueDetails
Source§impl Default for DeprecationIssueDetails
impl Default for DeprecationIssueDetails
Source§fn default() -> DeprecationIssueDetails
fn default() -> DeprecationIssueDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeprecationIssueDetails
impl<'de> Deserialize<'de> for DeprecationIssueDetails
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 DeprecationIssueDetails
impl RefUnwindSafe for DeprecationIssueDetails
impl Send for DeprecationIssueDetails
impl Sync for DeprecationIssueDetails
impl Unpin for DeprecationIssueDetails
impl UnsafeUnpin for DeprecationIssueDetails
impl UnwindSafe for DeprecationIssueDetails
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