pub struct Connection {
pub reader: BufReader<OwnedReadHalf>,
/* private fields */
}Fields§
§reader: BufReader<OwnedReadHalf>Implementations§
Source§impl Connection
impl Connection
pub async fn initialize<A: ToSocketAddrs>(addr: A) -> Option<Connection>
pub async fn xcmd_get_executable_lines( &mut self, depth: &str, ) -> XcmdGetExecutableLines
pub async fn breakpoint_set( &mut self, breakpoint_type: &str, lineno: &str, filename: &str, ) -> BreakpointSet
pub async fn feature_set(&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 Freeze for Connection
impl RefUnwindSafe for Connection
impl Send for Connection
impl Sync for Connection
impl Unpin for Connection
impl UnwindSafe for Connection
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