Skip to main content

Envoy

Struct Envoy 

Source
pub struct Envoy { /* private fields */ }
Expand description

Main client for the Enphase Envoy local gateway.

This client provides access to local solar production, consumption, and inverter data. It handles session management and authentication with the Envoy device.

Implementations§

Source§

impl Envoy

Source

pub fn new(host: impl Display) -> Self

Create a new Envoy client with the given host.

The host can be a hostname (e.g., “envoy.local”) or IP address (e.g., “192.168.1.100”). The client will connect via HTTPS by default.

§Arguments
  • host - The hostname or IP address of the Envoy device
§Returns

Returns a new Envoy client configured for the given host.

§Example
use enphase_api::Envoy;

let client = Envoy::new("envoy.local");
Source

pub fn with_client(host: impl Display, client: Client) -> Self

Create a new Envoy client with the given host and HTTP client.

This allows you to provide a custom reqwest::Client with specific configuration.

Since the Envoy client uses self-signed certificates, ensure that the provided client is configured to accept them if necessary (or ignore certificate errors).

Additionally, the Envoy client requires cookie storage to maintain session state, so ensure that the provided client has cookie store enabled.

§Arguments
  • host - The hostname or IP address of the Envoy device
  • client - A configured reqwest::Client
§Example
use enphase_api::Envoy;

let client = reqwest::Client::new();
let envoy = Envoy::with_client("envoy.local", client);
Source

pub async fn authenticate(&self, token: impl Display) -> Result<()>

Authenticate with the Envoy device using a JWT token.

This validates that the provided token is valid by checking it against the Envoy device.

§Arguments
  • token - The JWT token to authenticate with. This is typically obtained from the Enphase Entrez service.
§Returns

Returns Ok(()) if authentication is successful.

§Errors

Returns an error if the token is invalid or the authentication check fails.

§Example
use enphase_api::{Envoy, Entrez};

let entrez = Entrez::default();
entrez.login_with_env().await?;
let token = entrez.generate_token("your-site-name", "your-envoy-serial-number", true).await?;
let client = Envoy::new("envoy.local");
client.authenticate(&token).await?;
Source

pub async fn set_power_state( &self, serial: impl Display, state: PowerState, ) -> Result<()>

Set the power state of an inverter or device.

This sends a command to the Envoy device to enable or disable power production on the specified device (identified by serial number).

§Arguments
  • serial - The serial number of the device to control
  • state - The desired power state (PowerState::On or PowerState::Off)
§Returns

Returns Ok(()) if the power state change is successful.

§Errors

Returns an error if the request fails or the device does not respond correctly.

§Example
use enphase_api::{Envoy, models::PowerState};

let client = Envoy::new("envoy.local");
client.set_power_state("603980032", PowerState::Off).await?;
Source

pub async fn get_power_state(&self, serial: impl Display) -> Result<bool>

Get the power state of an inverter or device.

This retrieves the current power state from the Envoy device for the specified device (identified by serial number).

§Arguments
  • serial - The serial number of the device to query
§Returns

Returns Ok(true) if power is on, Ok(false) if power is off.

§Errors

Returns an error if the request fails or the response cannot be parsed.

§Example
use enphase_api::Envoy;

let client = Envoy::new("envoy.local");
let is_on = client.get_power_state("603980032").await?;
println!("Power is {}", if is_on { "on" } else { "off" });

Trait Implementations§

Source§

impl Clone for Envoy

Source§

fn clone(&self) -> Envoy

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Envoy

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for Envoy

§

impl !RefUnwindSafe for Envoy

§

impl Send for Envoy

§

impl Sync for Envoy

§

impl Unpin for Envoy

§

impl UnsafeUnpin for Envoy

§

impl !UnwindSafe for Envoy

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more