pub struct Host {
pub system: String,
pub tags: Vec<String>,
pub channel: String,
pub closure_hash: Option<String>,
pub pubkey: Option<String>,
pub pin: Option<Pin>,
}Fields§
§system: String§channel: String§closure_hash: Option<String>§pubkey: Option<String>§pin: Option<Pin>Operator-declared commit pin. Resolved at mkFleet eval time from the
most-specific declaration in the host > tag > channel chain; populated
only when the effective pin is non-empty AND unexpired. When present,
nixfleet-release builds from pin.commit instead of the release commit.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Host
impl<'de> Deserialize<'de> for Host
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for Host
Auto Trait Implementations§
impl Freeze for Host
impl RefUnwindSafe for Host
impl Send for Host
impl Sync for Host
impl Unpin for Host
impl UnwindSafe for Host
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