Struct ServerManager

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

Main structure for managing server processes.

Implementations§

Source§

impl ServerManager

Implementation of server management operations.

Provides methods for starting, stopping and managing server processes.

Source

pub fn new() -> Self

Creates a new ServerManager instance.

This is a convenience method that calls ServerManager::default().

Source

pub fn set_pid_file<P: ToString>(&mut self, pid_file: P) -> &mut Self

Sets the path to the PID file.

§Arguments
  • pid_file - A string or any type that can be converted to a string representing the PID file path.
Source

pub fn set_start_hook<F, Fut>(&mut self, func: F) -> &mut Self
where F: Fn() -> Fut + Send + Sync + 'static, Fut: Future<Output = ()> + Send + 'static,

Sets the asynchronous function to be called before the server starts.

§Arguments
  • F - An asynchronous function or closure to be executed.
Source

pub fn set_server_hook<F, Fut>(&mut self, func: F) -> &mut Self
where F: Fn() -> Fut + Send + Sync + 'static, Fut: Future<Output = ()> + Send + 'static,

Sets the main server function to be executed.

§Arguments
  • F - The primary asynchronous function or closure for the server’s logic.
Source

pub fn set_stop_hook<F, Fut>(&mut self, func: F) -> &mut Self
where F: Fn() -> Fut + Send + Sync + 'static, Fut: Future<Output = ()> + Send + 'static,

Sets the asynchronous function to be called before the server stops.

§Arguments
  • F - An asynchronous function or closure to be executed for cleanup.
Source

pub fn get_pid_file(&self) -> &str

Gets the configured PID file path.

Source

pub fn get_start_hook(&self) -> &ServerManagerHook

Gets a reference to the start hook.

Source

pub fn get_server_hook(&self) -> &ServerManagerHook

Gets a reference to the server hook.

Source

pub fn get_stop_hook(&self) -> &ServerManagerHook

Gets a reference to the stop hook.

Source

pub async fn start(&self)

Starts the server in foreground mode.

Writes the current process ID to the PID file and executes the server function.

Source

pub async fn stop(&self) -> ServerManagerResult

Stops the running server process.

Reads PID from file and terminates the process.

§Returns
  • ServerManagerResult - Operation result.
Source

pub async fn start_daemon(&self) -> ServerManagerResult

Starts the server in daemon (background) mode on Unix platforms.

Source

pub async fn watch_detached(&self, run_args: &[&str]) -> ServerManagerResult

Starts the server with hot-reloading using cargo-watch in detached mode.

This function spawns cargo-watch and returns immediately.

§Arguments
  • run_args - A slice of string arguments to pass to cargo-watch.
§Returns
  • ServerManagerResult - Operation result.
Source

pub async fn watch(&self, run_args: &[&str]) -> ServerManagerResult

Starts the server with hot-reloading using cargo-watch and waits for it to complete.

This function is blocking and will wait for the cargo-watch process to exit.

§Arguments
  • run_args - A slice of string arguments to pass to cargo-watch.
§Returns
  • ServerManagerResult - Operation result.

Trait Implementations§

Source§

impl Clone for ServerManager

Source§

fn clone(&self) -> ServerManager

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 Default for ServerManager

Provides a default implementation for ServerManager.

Source§

fn default() -> Self

Creates a default ServerManager instance with empty hooks and no PID file configured.

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> 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, 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 = 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.