Struct librojo::cli::ServeCommand
source · pub struct ServeCommand {
pub project: PathBuf,
pub address: Option<IpAddr>,
pub port: Option<u16>,
}Expand description
Expose a Rojo project to the Rojo Studio plugin.
Fields§
§project: PathBufPath to the project to serve. Defaults to the current directory.
address: Option<IpAddr>The IP address to listen on. Defaults to 127.0.0.1.
port: Option<u16>The port to listen on. Defaults to the project’s preference, or 34872 if
it has none.
Implementations§
source§impl ServeCommand
impl ServeCommand
pub fn run(self, global: GlobalOptions) -> Result<()>
Trait Implementations§
source§impl Args for ServeCommand
impl Args for ServeCommand
source§impl CommandFactory for ServeCommand
impl CommandFactory for ServeCommand
source§fn into_app_for_update<'b>() -> Command<'b>
fn into_app_for_update<'b>() -> Command<'b>
Deprecated, replaced with
CommandFactory::command_for_updatesource§impl Debug for ServeCommand
impl Debug for ServeCommand
source§impl FromArgMatches for ServeCommand
impl FromArgMatches for ServeCommand
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches ) -> Result<Self, Error>
source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches to self.source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches to self.source§impl Parser for ServeCommand
impl Parser for ServeCommand
source§fn parse_from<I, T>(itr: I) -> Self
fn parse_from<I, T>(itr: I) -> Self
Parse from iterator, exit on error
source§fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
fn try_parse_from<I, T>(itr: I) -> Result<Self, Error>
Parse from iterator, return Err on error.
source§fn update_from<I, T>(&mut self, itr: I)
fn update_from<I, T>(&mut self, itr: I)
Update from iterator, exit on error
Auto Trait Implementations§
impl RefUnwindSafe for ServeCommand
impl Send for ServeCommand
impl Sync for ServeCommand
impl Unpin for ServeCommand
impl UnwindSafe for ServeCommand
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