Struct librojo::Project [−][src]
pub struct Project {
pub name: String,
pub tree: ProjectNode,
pub serve_port: Option<u16>,
pub serve_place_ids: Option<HashSet<u64>>,
pub place_id: Option<u64>,
pub game_id: Option<u64>,
pub glob_ignore_paths: Vec<Glob>,
pub file_location: PathBuf,
}Expand description
Contains all of the configuration for a Rojo-managed project.
Project files are stored in .project.json files.
Fields
name: StringThe name of the top-level instance described by the project.
tree: ProjectNodeThe tree of instances described by this project. Projects always describe at least one instance.
serve_port: Option<u16>If specified, sets the default port that rojo serve should use when
using this project for live sync.
serve_place_ids: Option<HashSet<u64>>If specified, contains the set of place IDs that this project is compatible with when doing live sync.
This setting is intended to help prevent syncing a Rojo project into the wrong Roblox place.
place_id: Option<u64>If specified, sets the current place’s place ID when connecting to the Rojo server from Roblox Studio.
game_id: Option<u64>If specified, sets the current place’s game ID when connecting to the Rojo server from Roblox Studio.
glob_ignore_paths: Vec<Glob>A list of globs, relative to the folder the project file is in, that match files that should be excluded if Rojo encounters them.
file_location: PathBufThe path to the file that this project came from. Relative paths in the
project should be considered relative to the parent of this field, also
given by Project::folder_location.
Implementations
Tells whether the given path describes a Rojo project.
pub fn load_from_slice(
contents: &[u8],
project_file_location: &Path
) -> Result<Self, ProjectError>
Trait Implementations
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
Auto Trait Implementations
impl RefUnwindSafe for Project
impl UnwindSafe for Project
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn vzip(self) -> V
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more