Skip to main content

Lamb

Struct Lamb 

Source
#[non_exhaustive]
pub struct Lamb { pub pid: u32, pub name: String, }
Expand description

One process the OS reports as a descendant of a sheep.

§What this is not

It is not the set of processes that die with the sheep, and nothing here should be read as promising that. The list is built by walking the OS’s parent-pid links; the stop ladder acts on the process GROUP, and the two units diverge in both directions — a lamb that forks and exits leaves its own children re-parented to init, out of this list and still in the group, while a setsid() grandchild stays in this list and leaves the group. shep-daemon’s limits module doc has the full account, and it is the authority; this is a pointer to it, not a second copy free to drift.

§Why a name and not a command line

name is the executable’s name as the OS reports it (node, sh, python3), never its argument vector. A process’s argv routinely carries credentials — a --password= flag, a URL with a token in the query string — and this field rides in shep describe --format json, which is output people paste into bug reports. A pid alone would be safe too, and was considered; it was rejected because a tree of bare integers sends the operator to ps, which is the work the tree exists to save.

§Why no memory figure

The sheep’s own row already reports its whole tree’s resident size (ProcessInfo::memory_bytes), and a per-lamb breakdown is a profiler’s job. deferred.md’s note on this struct’s growth asks for exactly this restraint.

#[non_exhaustive]: shep-core is a published library, this type is new, and the two obvious next fields (a parent pid, so a deep tree can be nested rather than flattened; a start time) would otherwise be breaking additions (IR-20). Build one with Self::new.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§pid: u32

The lamb’s own pid.

§name: String

The executable’s name, as the OS reports it. Never its command line.

Implementations§

Source§

impl Lamb

Source

pub fn new(pid: u32, name: impl Into<String>) -> Self

One lamb.

A plain constructor rather than a builder, unlike ProcessInfo: both fields are required and neither is optional or derived, which is the case a builder buys nothing for.

Trait Implementations§

Source§

impl Clone for Lamb

Source§

fn clone(&self) -> Lamb

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Debug for Lamb

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Lamb

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for Lamb

Source§

impl PartialEq for Lamb

Source§

fn eq(&self, other: &Lamb) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for Lamb

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Lamb

Auto Trait Implementations§

§

impl Freeze for Lamb

§

impl RefUnwindSafe for Lamb

§

impl Send for Lamb

§

impl Sync for Lamb

§

impl Unpin for Lamb

§

impl UnsafeUnpin for Lamb

§

impl UnwindSafe for Lamb

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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

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

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> 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 = !

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.