pub struct ResolvedBreakpoint {
pub breakpoint_id: BreakpointId,
pub location: Location,
}
Fields§
§breakpoint_id: BreakpointId
Breakpoint unique identifier.
location: Location
Actual breakpoint location.
Implementations§
Source§impl ResolvedBreakpoint
impl ResolvedBreakpoint
pub fn new( breakpoint_id: impl Into<BreakpointId>, location: impl Into<Location>, ) -> ResolvedBreakpoint
Source§impl ResolvedBreakpoint
impl ResolvedBreakpoint
pub fn builder() -> ResolvedBreakpointBuilder
Source§impl ResolvedBreakpoint
impl ResolvedBreakpoint
pub const IDENTIFIER: &'static str = "Debugger.ResolvedBreakpoint"
Trait Implementations§
Source§impl Clone for ResolvedBreakpoint
impl Clone for ResolvedBreakpoint
Source§fn clone(&self) -> ResolvedBreakpoint
fn clone(&self) -> ResolvedBreakpoint
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 ResolvedBreakpoint
impl Debug for ResolvedBreakpoint
Source§impl<'de> Deserialize<'de> for ResolvedBreakpoint
impl<'de> Deserialize<'de> for ResolvedBreakpoint
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ResolvedBreakpoint, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ResolvedBreakpoint, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ResolvedBreakpoint
impl PartialEq for ResolvedBreakpoint
Source§impl Serialize for ResolvedBreakpoint
impl Serialize for ResolvedBreakpoint
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ResolvedBreakpoint
Auto Trait Implementations§
impl Freeze for ResolvedBreakpoint
impl RefUnwindSafe for ResolvedBreakpoint
impl Send for ResolvedBreakpoint
impl Sync for ResolvedBreakpoint
impl Unpin for ResolvedBreakpoint
impl UnwindSafe for ResolvedBreakpoint
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