Struct xdebug::XdebugConnection
source · pub struct XdebugConnection {
pub reader: BufReader<OwnedReadHalf>,
/* private fields */
}Fields§
§reader: BufReader<OwnedReadHalf>Implementations§
source§impl XdebugConnection
impl XdebugConnection
pub async fn initialize() -> Option<XdebugConnection>
pub async fn set_feature(&mut self, name: &str, value: &str) -> FeatureSet
pub async fn status(&mut self) -> Status
pub async fn step_into(&mut self) -> StepInto
pub async fn stack_get(&mut self) -> StackGet
pub async fn run(&mut self) -> Run
pub async fn detach(&mut self) -> Detach
pub async fn context_names(&mut self) -> ContextNames
pub async fn context_get( &mut self, depth: Option<&str>, context: Option<&str> ) -> ContextGet
Auto Trait Implementations§
impl RefUnwindSafe for XdebugConnection
impl Send for XdebugConnection
impl Sync for XdebugConnection
impl Unpin for XdebugConnection
impl UnwindSafe for XdebugConnection
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