Skip to main content

SessionError

Enum SessionError 

Source
#[non_exhaustive]
pub enum SessionError {
Show 14 variants InvalidState { expected: Vec<SessionState>, current: SessionState, }, EnvironmentScriptFailed { name: String, action: String, reason: String, }, FormatString { context: String, reason: String, }, EmbeddedFile { name: String, source: Error, }, EmbeddedFilePath { name: String, filename: String, reason: String, }, WorkingDirectory { path: PathBuf, source: Error, }, SubprocessStart { command: String, source: Error, }, TempDir { path: PathBuf, source: Error, }, Runtime(String), DuplicateEnvironment { id: String, }, UnknownEnvironment { identifier: String, }, PathPermissions { path: String, reason: String, }, HelperCommunication(String), LifoViolation { expected: String, got: String, },
}
Expand description

Errors that can occur during session operations.

use openjd_sessions::SessionError;

let err = SessionError::Runtime("something went wrong".into());
assert_eq!(err.to_string(), "something went wrong");

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

InvalidState

Session is not in the expected state for the requested operation.

Fields

§expected: Vec<SessionState>
§

EnvironmentScriptFailed

An environment’s onEnter or onExit script failed.

Fields

§name: String
§action: String
§reason: String
§

FormatString

Failed to resolve a format string expression.

Fields

§context: String
§reason: String
§

EmbeddedFile

Failed to write an embedded file.

Fields

§name: String
§source: Error
§

EmbeddedFilePath

An embedded file’s filename is not a safe single path component.

Raised when a filename field’s value contains path separators, parent-directory components, null bytes, or is otherwise unsafe. This is a defense-in-depth check; openjd-model also rejects path separators in filenames at template validation time per the 2023-09 spec (§6.1.1 <Filename>).

Fields

§name: String
§filename: String
§reason: String
§

WorkingDirectory

Failed to create or access the working directory.

Fields

§path: PathBuf
§source: Error
§

SubprocessStart

Subprocess failed to start.

Fields

§command: String
§source: Error
§

TempDir

Failed to create or manage a temp directory.

Fields

§path: PathBuf
§source: Error
§

Runtime(String)

A generic runtime error.

§

DuplicateEnvironment

Attempted to enter an environment that is already active in this session.

Fields

§

UnknownEnvironment

Referenced an environment identifier that does not exist in this session.

Fields

§identifier: String
§

PathPermissions

Failed to set file ownership or permissions (chown/chmod).

Fields

§path: String
§reason: String
§

HelperCommunication(String)

Cross-user helper IPC communication failure.

§

LifoViolation

Attempted to exit an environment out of LIFO order.

Fields

§expected: String

Trait Implementations§

Source§

impl Debug for SessionError

Source§

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

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

impl Display for SessionError

Source§

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

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

impl Error for SessionError

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

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> 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> ToCompactString for T
where T: Display,

Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. 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.