You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I'm very new to rust and am bamboozled by this and can't seem to find a solution looking at similar issues.
`
use std::io;
use std::ascii;
use std::time::Duration;
use std::time::Instant;
use std::thread::sleep;
extern crate tessel;
extern crate unix_socket;
extern crate libc;
use tessel::Tessel;
use tessel::Port;
use std::sync::{Arc, Mutex, MutexGuard};
use std::marker::PhantomData;
use std::sync::atomic::Ordering;
use protocol::{Command, reply, PortSocket};
use std::os::unix::net::UnixStream;
thread 'main' panicked at 'called Result::unwrap() on an Err value: Os { code: 2, kind: NotFound, message: "No such file or directory" }', libcore/result.rs:945:5
note: Run with RUST_BACKTRACE=1 for a backtrace.
I'm trying to run the code just to print to see if everything is running before adding the code to accompany all the items in use.
The text was updated successfully, but these errors were encountered:
Hi,
I'm very new to rust and am bamboozled by this and can't seem to find a solution looking at similar issues.
`
use std::io;
use std::ascii;
use std::time::Duration;
use std::time::Instant;
use std::thread::sleep;
extern crate tessel;
extern crate unix_socket;
extern crate libc;
use tessel::Tessel;
use tessel::Port;
use std::sync::{Arc, Mutex, MutexGuard};
use std::marker::PhantomData;
use std::sync::atomic::Ordering;
use protocol::{Command, reply, PortSocket};
use std::os::unix::net::UnixStream;
To which gives the error:
I'm trying to run the code just to print to see if everything is running before adding the code to accompany all the items in use.
The text was updated successfully, but these errors were encountered: