groxide 0.1.0

Query Rust crate documentation from the terminal
Documentation
---
source: tests/cli_happy.rs
expression: stdout
---
struct groxide_test_api::GenericStruct

pub struct GenericStruct<T: Clone>

A generic container holding a single value.

Examples

  use groxide_test_api::GenericStruct;
  let gs = GenericStruct::new(42);
  assert_eq!(*gs.value(), 42);

methods:
  pub fn into_inner(self) -> T                                Converts into the inner value, consuming self.
  pub fn new(value: T) -> Self                                Creates a new `GenericStruct` with the given value.
  pub fn value(&self) -> &T                                   Returns a reference to the inner value.

trait implementations:
  impl Freeze
  impl RefUnwindSafe
  impl Send
  impl Sync
  impl Unpin
  impl UnsafeUnpin
  impl UnwindSafe