pub struct BeeVersions {
pub bee_version: String,
pub bee_api_version: String,
pub supported_api_version: String,
pub supported_bee_version_exact: String,
}Expand description
GET /node / GET /addresses plus health give the full picture.
Versions is the structured triple bee-js exposes from /health.
Fields§
§bee_version: StringFull Bee version including git suffix.
bee_api_version: StringJust the API version field.
supported_api_version: StringSupported API version this client claims to follow.
supported_bee_version_exact: StringSupported exact Bee version this client targets.
Trait Implementations§
Source§impl Clone for BeeVersions
impl Clone for BeeVersions
Source§fn clone(&self) -> BeeVersions
fn clone(&self) -> BeeVersions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BeeVersions
impl Debug for BeeVersions
Source§impl PartialEq for BeeVersions
impl PartialEq for BeeVersions
impl Eq for BeeVersions
impl StructuralPartialEq for BeeVersions
Auto Trait Implementations§
impl Freeze for BeeVersions
impl RefUnwindSafe for BeeVersions
impl Send for BeeVersions
impl Sync for BeeVersions
impl Unpin for BeeVersions
impl UnsafeUnpin for BeeVersions
impl UnwindSafe for BeeVersions
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