tokio-rs / website

Website for the Tokio project
https://tokio.rs
MIT License
228 stars 329 forks source link

Bridging.md reference to crate::Result ? #707

Closed JiveyGuy closed 1 year ago

JiveyGuy commented 1 year ago

What is meant by the crate::Result?

pub fn set(&mut self, key: &str, value: Bytes) -> crate::Result<()> {
        self.rt.block_on(self.inner.set(key, value))
    }
JiveyGuy commented 1 year ago

I see now in the Bridging tutorial there are references to previous tutorials where this is defined.