pub struct Murray {
pub blockchain: Blockchain,
pub prices: Prices,
pub lightning: Lightning,
}
Expand description
The Murray
struct is the entrypoint
in order to make calls regarding
prices, blockchain and lightning information.
You can call it using either default
method,
in which all endpoints for those services will
use a default URL, or with new
, where you can
define what are your endpoints for them.
Fields§
§blockchain: Blockchain
§prices: Prices
§lightning: Lightning
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Murray
impl !RefUnwindSafe for Murray
impl Send for Murray
impl Sync for Murray
impl Unpin for Murray
impl !UnwindSafe for Murray
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