File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 4141//! Now open up your `src/main.rs` file and establish a connection to the server while also adding some
4242//! imports:
4343//!
44- //! ```norun
44+ //! ```no_run
4545//! use skytable::{Connection, Query, Element};
4646//! fn main() -> std::io::Result<()> {
4747//! let mut con = Connection::new("127.0.0.1", 2003)?;
5151//!
5252//! Now let's run a `Query`! Change the previous code block to:
5353//!
54- //! ```norun
54+ //! ```no_run
5555//! use skytable::{error, Connection, Query, Element};
5656//! fn main() -> Result<(), error::Error> {
5757//! let mut con = Connection::new("127.0.0.1", 2003)?;
7070//!
7171//! ### `SET`ting a key
7272//!
73- //! ```norun
73+ //! ```no_run
7474//! use skytable::actions::Actions;
7575//! use skytable::sync::Connection;
7676//!
8282//!
8383//! ### `GET`ting a key
8484//!
85- //! ```norun
85+ //! ```no_run
8686//! use skytable::actions::Actions;
8787//! use skytable::sync::Connection;
8888//!
105105//! you wanted to `SET` the value of a key called `bindata` to some binary data stored
106106//! in a `Vec<u8>`. You can achieve this with the `RawString` type:
107107//!
108- //! ```norun
108+ //! ```no_run
109109//! use skytable::actions::Actions;
110110//! use skytable::sync::Connection;
111111//! use skytable::types::RawString;
You can’t perform that action at this time.
0 commit comments